chore: add missing awaits to to_device call events listener

This commit is contained in:
td 2023-05-13 20:06:04 +05:30
parent 8e4f4486b2
commit 26e0d0954d
No known key found for this signature in database
GPG Key ID: F6D9E9BF14C7D103
1 changed files with 0 additions and 3 deletions

View File

@ -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));