fix: allow mesh group call invite
This commit is contained in:
parent
e6631f4718
commit
0ff643f652
|
|
@ -223,7 +223,9 @@ class VoIP {
|
||||||
}
|
}
|
||||||
if (callId != null) {
|
if (callId != null) {
|
||||||
final call = calls[VoipId(roomId: room.id, callId: callId)];
|
final call = calls[VoipId(roomId: room.id, callId: callId)];
|
||||||
if (call == null && event.type != EventTypes.CallInvite) {
|
if (call == null &&
|
||||||
|
!{EventTypes.CallInvite, EventTypes.GroupCallMemberInvite}
|
||||||
|
.contains(event.type)) {
|
||||||
Logs().w(
|
Logs().w(
|
||||||
'Ignoring call event ${event.type} because we do not have the call');
|
'Ignoring call event ${event.type} because we do not have the call');
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue