display err.message to user if available in error msgs
This commit is contained in:
parent
db996f678c
commit
a2be764681
6 changed files with 21 additions and 21 deletions
|
@ -313,7 +313,7 @@ function _onAction(payload) {
|
|||
console.error("Conference call failed: " + err);
|
||||
Modal.createDialog(ErrorDialog, {
|
||||
title: "Failed to set up conference call",
|
||||
description: "Conference call failed.",
|
||||
description: "Conference call failed. " + ((err && err.message) ? err.message : ""),
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue