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 81608c3 commit 2862e59Copy full SHA for 2862e59
Assets/BossRoom/Scripts/Shared/Net/ConnectionManagement/ClientGameNetPortal.cs
@@ -204,6 +204,7 @@ private IEnumerator TryToReconnect(string lobbyCode)
204
var leavingLobby = true;
205
m_LobbyServiceFacade.ForceLeaveLobbyAttempt(() => leavingLobby = false, () => leavingLobby = false);
206
yield return new WaitWhile(() => leavingLobby); // This is not a clean way of doing this, ideally we would want to replace that logic with a proper await.
207
+ // todo should use yield return new WaitUntil(() => task.IsCompleted);
208
var joiningLobby = true;
209
m_LobbyServiceFacade.JoinLobbyAsync("", lobbyCode, onSuccess: lobby =>
210
{
0 commit comments