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 bdd199e commit 78d6b14Copy full SHA for 78d6b14
lib/src/core/room.dart
@@ -850,7 +850,10 @@ class Room extends DisposableChangeNotifier with EventsEmittable<RoomEvent> {
850
for (final update in updates) {
851
// try to find RemoteParticipant
852
final participant = _remoteParticipants.bySid[update.participantSid];
853
- if (participant == null) continue;
+ if (participant == null) {
854
+ logger.warning('Participant not found for sid ${update.participantSid}');
855
+ continue;
856
+ }
857
// try to find RemoteTrackPublication
858
final trackPublication = participant.trackPublications[update.trackSid];
859
if (trackPublication == null) continue;
0 commit comments