We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c254631 commit 68f4584Copy full SHA for 68f4584
Assets/BossRoom/Scripts/Game/Client/UI/Lobby/LobbyUIMediator.cs
@@ -205,13 +205,13 @@ public async void QuickJoinRequest()
205
}
206
207
208
- void OnJoinedLobby(Lobby remoteLobby)
+ async void OnJoinedLobby(Lobby remoteLobby)
209
{
210
m_LobbyServiceFacade.SetRemoteLobby(remoteLobby);
211
m_GameNetPortal.PlayerName = m_LocalUser.DisplayName;
212
213
Debug.Log($"Joined lobby with code: {m_LocalLobby.LobbyCode}, Internal Relay Join Code{m_LocalLobby.RelayJoinCode}");
214
- m_ClientNetPortal.StartClientUnityRelayModeAsync(OnRelayJoinFailed);
+ await m_ClientNetPortal.StartClientUnityRelayModeAsync(OnRelayJoinFailed);
215
216
void OnRelayJoinFailed(string message)
217
0 commit comments