fixed: websocket server wrong execution thread

This commit is contained in:
2022-12-25 03:13:01 -08:00
parent f34b05e6ff
commit e9418f4b22
10 changed files with 110 additions and 109 deletions
@@ -76,6 +76,6 @@ public sealed class JoinOrCreateHandler : IHandler
var sendData = writer.ToArray();
player.Connection.Reliable.Send(sendData);
_logger.Trace($"Joined to room {room.Id}");
_logger.Trace($"{player.Connection.Id}|{player.Name} joined to room {room.Id}");
}
}