1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Fix error dialog on conf call error

This commit is contained in:
David Baker
2016-09-05 17:03:10 +01:00
parent 31e09e6137
commit d782d5bbc7

View File

@ -276,6 +276,7 @@ function _onAction(payload) {
).done(function(call) {
placeCall(call);
}, function(err) {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
Modal.createDialog(ErrorDialog, {
title: "Failed to set up conference call",
description: "Conference call failed: " + err,