mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Added the room name to the error message
This commit is contained in:
parent
435570a022
commit
a06896f96c
1 changed files with 8 additions and 4 deletions
|
@ -214,7 +214,8 @@ module.exports = React.createClass({
|
|||
var self = this;
|
||||
Invite.inviteMultipleToRoom(this.props.roomId, addrs)
|
||||
.then(function(addrs) {
|
||||
return self._showAnyInviteErrors(addrs);
|
||||
var room = MatrixClientPeg.get().getRoom(this.props.roomId);
|
||||
return self._showAnyInviteErrors(addrs, room);
|
||||
})
|
||||
.catch(function(err) {
|
||||
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
|
@ -240,11 +241,13 @@ module.exports = React.createClass({
|
|||
} else {
|
||||
// Start multi user chat
|
||||
var self = this;
|
||||
var room;
|
||||
createRoom().then(function(roomId) {
|
||||
room = MatrixClientPeg.get().getRoom(roomId);
|
||||
return Invite.inviteMultipleToRoom(roomId, addrs);
|
||||
})
|
||||
.then(function(addrs) {
|
||||
return self._showAnyInviteErrors(addrs);
|
||||
return self._showAnyInviteErrors(addrs, room);
|
||||
})
|
||||
.catch(function(err) {
|
||||
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
|
@ -319,7 +322,7 @@ module.exports = React.createClass({
|
|||
}
|
||||
},
|
||||
|
||||
_showAnyInviteErrors: function(addrs) {
|
||||
_showAnyInviteErrors: function(addrs, room) {
|
||||
// Show user any errors
|
||||
var errorList = [];
|
||||
for (var addr in addrs) {
|
||||
|
@ -327,10 +330,11 @@ module.exports = React.createClass({
|
|||
errorList.push(addr);
|
||||
}
|
||||
}
|
||||
|
||||
if (errorList.length > 0) {
|
||||
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
Modal.createDialog(ErrorDialog, {
|
||||
title: "Failed to invite the following users:",
|
||||
title: "Failed to invite the following users to the " + room.name + " room:",
|
||||
description: errorList.join(", "),
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue