mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-23 15:31:22 +02:00
Fix accepting invite edge case where it wouldn't show the newly joined space
This commit is contained in:
parent
47c12a7d23
commit
3bb6edbda7
@ -414,7 +414,7 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
||||
if ((membership || room.getMyMembership()) === "invite") {
|
||||
this._invitedSpaces.add(room);
|
||||
this.emit(UPDATE_INVITED_SPACES, this.invitedSpaces);
|
||||
} else if (oldMembership === "invite") {
|
||||
} else if (oldMembership === "invite" && membership !== "join") {
|
||||
this._invitedSpaces.delete(room);
|
||||
this.emit(UPDATE_INVITED_SPACES, this.invitedSpaces);
|
||||
} else if (room?.isSpaceRoom()) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user