You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-19 20:23:18 +03:00
display err.message to user if available in error msgs
This commit is contained in:
@ -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 : ""),
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user