Skip to content

Commit

Permalink
Merge pull request #1782 from famedly/td/meshCallInviteFix
Browse files Browse the repository at this point in the history
fix: allow mesh group call invite
  • Loading branch information
td-famedly authored Apr 30, 2024
2 parents e6631f4 + 0ff643f commit 5cf1e65
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 5cf1e65

Please sign in to comment.