fix: missed incomingCallRoomId case in removing glare stuff during group calls
This commit is contained in:
parent
0deb8d9e6e
commit
ef0bf44b70
|
|
@ -535,7 +535,9 @@ class VoIP {
|
||||||
return Null as CallSession;
|
return Null as CallSession;
|
||||||
}
|
}
|
||||||
final callId = 'cid${DateTime.now().millisecondsSinceEpoch}';
|
final callId = 'cid${DateTime.now().millisecondsSinceEpoch}';
|
||||||
incomingCallRoomId[roomId] = callId;
|
if (currentGroupCID == null) {
|
||||||
|
incomingCallRoomId[roomId] = callId;
|
||||||
|
}
|
||||||
final opts = CallOptions()
|
final opts = CallOptions()
|
||||||
..callId = callId
|
..callId = callId
|
||||||
..type = type
|
..type = type
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue