Appease the linter
This commit is contained in:
parent
443744733d
commit
b9852c7264
1 changed files with 1 additions and 3 deletions
|
@ -407,12 +407,10 @@ export default class DMInviteDialog extends React.PureComponent {
|
||||||
// TODO: [Canonical DMs] Remove this check and instead just create the multi-person DM
|
// TODO: [Canonical DMs] Remove this check and instead just create the multi-person DM
|
||||||
let createRoomPromise = Promise.resolve();
|
let createRoomPromise = Promise.resolve();
|
||||||
if (targetIds.length === 1) {
|
if (targetIds.length === 1) {
|
||||||
createRoomPromise = createRoom({dmUserId: targetIds[0]})
|
createRoomPromise = createRoom({dmUserId: targetIds[0]});
|
||||||
} else {
|
} else {
|
||||||
// Create a boring room and try to invite the targets manually.
|
// Create a boring room and try to invite the targets manually.
|
||||||
let room;
|
|
||||||
createRoomPromise = createRoom().then(roomId => {
|
createRoomPromise = createRoom().then(roomId => {
|
||||||
room = MatrixClientPeg.get().getRoom(roomId);
|
|
||||||
return inviteMultipleToRoom(roomId, targetIds);
|
return inviteMultipleToRoom(roomId, targetIds);
|
||||||
}).then(result => {
|
}).then(result => {
|
||||||
const failedUsers = Object.keys(result.states).filter(a => result.states[a] === 'error');
|
const failedUsers = Object.keys(result.states).filter(a => result.states[a] === 'error');
|
||||||
|
|
Loading…
Reference in a new issue