mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-20 05:51:08 +02:00
fix closing modal when finished
This commit is contained in:
parent
f89bbea3f1
commit
8b2dc22fe1
@ -656,6 +656,7 @@ export default class InviteDialog extends React.PureComponent<IInviteDialogProps
|
||||
|
||||
// Check if it's a traditional DM and create the room if required.
|
||||
// TODO: [Canonical DMs] Remove this check and instead just create the multi-person DM
|
||||
let abort = false;
|
||||
try {
|
||||
const isSelf = targetIds.length === 1 && targetIds[0] === client.getUserId();
|
||||
if (targetIds.length === 1 && !isSelf) {
|
||||
@ -673,9 +674,10 @@ export default class InviteDialog extends React.PureComponent<IInviteDialogProps
|
||||
await client.peekInRoom(roomId);
|
||||
const invitesState = await inviteMultipleToRoom(roomId, targetIds);
|
||||
|
||||
if (!this._shouldAbortAfterInviteError(invitesState)) {
|
||||
this.props.onFinished();
|
||||
}
|
||||
abort = this._shouldAbortAfterInviteError(invitesState);
|
||||
}
|
||||
if (!abort) {
|
||||
this.props.onFinished();
|
||||
}
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
|
Loading…
x
Reference in New Issue
Block a user