mirror of https://github.com/vector-im/riot-web
Fix error dialog on conf call error
parent
31e09e6137
commit
d782d5bbc7
|
@ -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