Show a dialog when Jitsi encounters an error (#22352)

pull/22374/head
Robin 2022-05-26 10:03:55 -04:00 committed by GitHub
parent 359e0e205f
commit 51ed7784d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -300,12 +300,12 @@ function createJWTToken() {
);
}
async function notifyHangup() {
async function notifyHangup(errorMessage?: string) {
if (widgetApi) {
// We send the hangup event before setAlwaysOnScreen, because the latter
// can cause the receiving side to instantly stop listening.
try {
await widgetApi.transport.send(ElementWidgetActions.HangupCall, {});
await widgetApi.transport.send(ElementWidgetActions.HangupCall, { errorMessage });
} finally {
await widgetApi.setAlwaysOnScreen(false);
}
@ -418,7 +418,7 @@ function joinConference(audioDevice?: string, videoDevice?: string) {
if (error.isFatal) {
// We got disconnected. Since Jitsi Meet might send us back to the
// prejoin screen, we're forced to act as if we hung up entirely.
notifyHangup();
notifyHangup(error.message);
meetApi = null;
closeConference();
}