chore: add missing awaits to to_device call events listener
This commit is contained in:
parent
8e4f4486b2
commit
26e0d0954d
|
|
@ -49,7 +49,6 @@ class VoIP {
|
|||
Map<String, String> 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));
|
||||
|
|
|
|||
Loading…
Reference in New Issue