From 26e0d0954d6307d21e130fafcbcdc6225c6d07a2 Mon Sep 17 00:00:00 2001 From: td Date: Sat, 13 May 2023 20:06:04 +0530 Subject: [PATCH] chore: add missing awaits to to_device call events listener --- lib/src/voip/voip.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/src/voip/voip.dart b/lib/src/voip/voip.dart index 57cbebf6..3bd19c23 100644 --- a/lib/src/voip/voip.dart +++ b/lib/src/voip/voip.dart @@ -49,7 +49,6 @@ class VoIP { Map incomingCallRoomId = {}; VoIP(this.client, this.delegate) : super() { - Logs().e('11111'); // to populate groupCalls with already present calls for (final room in client.rooms) { if (room.activeGroupCallEvents.isNotEmpty) { @@ -58,9 +57,7 @@ class VoIP { emitHandleNewGroupCall: false); } } - Logs().e('doneeeeee'); } - Logs().e('222222'); client.onCallInvite.stream .listen((event) => _handleEvent(event, onCallInvite));