From bac3e44c91dd6a21a30a73a4da7ba33870112fd9 Mon Sep 17 00:00:00 2001 From: JohnCorby Date: Sun, 7 May 2023 18:39:49 -0700 Subject: [PATCH] d --- EpicOnlineTransport/Server.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EpicOnlineTransport/Server.cs b/EpicOnlineTransport/Server.cs index 8f1c441e..9047e9b8 100644 --- a/EpicOnlineTransport/Server.cs +++ b/EpicOnlineTransport/Server.cs @@ -109,7 +109,7 @@ namespace EpicTransport { } if (epicToMirrorIds.TryGetValue(clientUserId, out int connectionId)) { - OnReceivedData?.Invoke(connectionId, data, channel); + OnReceivedData.Invoke(connectionId, data, channel); } else { SocketId socketId; epicToSocketIds.TryGetValue(clientUserId, out socketId);