You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
when automatically switching space to match room fall back to the home space
This commit is contained in:
@@ -535,10 +535,8 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
||||
const parents = Array.from(this.parentMap.get(room.roomId) || []);
|
||||
parent = parents.find(p => this.matrixClient.getRoom(p));
|
||||
}
|
||||
if (parent) {
|
||||
// don't trigger a context switch when we are switching a space to match the chosen room
|
||||
this.setActiveSpace(parent, false);
|
||||
}
|
||||
// don't trigger a context switch when we are switching a space to match the chosen room
|
||||
this.setActiveSpace(parent || null, false);
|
||||
}
|
||||
|
||||
// Persist last viewed room from a space
|
||||
|
||||
Reference in New Issue
Block a user