Silly mistake fixed, spotted by Dave (cheers)

pull/21833/head
wmwragg 2016-09-13 16:28:35 +01:00
parent 272dd82b9d
commit 890100a5bc
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ module.exports = React.createClass({
// Start multi user chat
var self = this;
createRoom().then(function(roomId) {
return Invite.inviteMultipleToRoom(self.props.roomId, addrs);
return Invite.inviteMultipleToRoom(roomId, addrs);
})
.catch(function(err) {
var ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");