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.
IsConnected
1 parent 2b346b9 commit 2482d17Copy full SHA for 2482d17
Runtime/Scripts/Room.cs
@@ -130,7 +130,7 @@ public class Room
130
public string Metadata { private set; get; }
131
public LocalParticipant LocalParticipant { private set; get; }
132
public ConnectionState ConnectionState { private set; get; }
133
- public bool IsConnected => RoomHandle == null && ConnectionState != ConnectionState.ConnDisconnected;
+ public bool IsConnected => RoomHandle != null && ConnectionState != ConnectionState.ConnDisconnected;
134
public E2EEManager E2EEManager { internal set; get; }
135
public IReadOnlyDictionary<string, RemoteParticipant> RemoteParticipants => _participants;
136
0 commit comments