Merge pull request #7705 from vector-im/mauroromito/fix_ending_jistsi_call_when_removing_widget

This commit is contained in:
Mauro 2023-11-06 18:06:02 +01:00 committed by GitHub
commit e7a93de14d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -8053,7 +8053,7 @@ static CGSize kThreadListBarButtonItemImageSize;
self.removeJitsiWidgetView.delegate = nil;
// end active call if exists
if ([self isRoomHavingAJitsiCallForWidgetId:jitsiWidget.widgetId])
if ([self isRoomHavingAJitsiCall])
{
[self endActiveJitsiCall];
}

1
changelog.d/7704.bugfix Normal file
View file

@ -0,0 +1 @@
The slide to end call for everyone button for the Jitsi widget now also ends the call for the current user.