mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-05 04:06:44 +02:00
Fix stuck persistence of Jitsi widgets (#21650)
The hangup event may or may not be handled, so we need to account for cases where it throws an error.
This commit is contained in:
parent
b1a60b25b4
commit
b79133c694
@ -361,7 +361,7 @@ function joinConference() { // event handler bound in HTML
|
||||
// can cause the receiving side to instantly stop listening.
|
||||
// ignored promise because we don't care if it works
|
||||
// noinspection JSIgnoredPromiseFromCall
|
||||
widgetApi.transport.send(ElementWidgetActions.HangupCall, {}).then(() =>
|
||||
widgetApi.transport.send(ElementWidgetActions.HangupCall, {}).finally(() =>
|
||||
widgetApi.setAlwaysOnScreen(false),
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user