mirror of https://github.com/vector-im/riot-web
Merge pull request #444 from matrix-org/dbkr/fix_conf_error
Fix error dialog on conf call errorpull/21833/head
commit
83296512fd
|
@ -276,6 +276,7 @@ function _onAction(payload) {
|
||||||
).done(function(call) {
|
).done(function(call) {
|
||||||
placeCall(call);
|
placeCall(call);
|
||||||
}, function(err) {
|
}, function(err) {
|
||||||
|
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||||
Modal.createDialog(ErrorDialog, {
|
Modal.createDialog(ErrorDialog, {
|
||||||
title: "Failed to set up conference call",
|
title: "Failed to set up conference call",
|
||||||
description: "Conference call failed: " + err,
|
description: "Conference call failed: " + err,
|
||||||
|
|
Loading…
Reference in New Issue