From d782d5bbc757f271892b81608e3173d0426a8f78 Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 5 Sep 2016 17:03:10 +0100 Subject: [PATCH] Fix error dialog on conf call error --- src/CallHandler.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CallHandler.js b/src/CallHandler.js index 4c68718709..c2ee05b22c 100644 --- a/src/CallHandler.js +++ b/src/CallHandler.js @@ -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,