Skip to content

Commit

Permalink
fix: allow mesh group call invite
Browse files Browse the repository at this point in the history
  • Loading branch information
td-famedly committed Apr 30, 2024
1 parent e6631f4 commit 0ff643f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/voip/voip.dart
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,9 @@ class VoIP {
}
if (callId != null) {
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(
'Ignoring call event ${event.type} because we do not have the call');
return;
Expand Down

0 comments on commit 0ff643f

Please sign in to comment.