mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Merge pull request #6874 from matrix-org/t3chguy/spaces-null-guard-client
This commit is contained in:
commit
540593e75d
1 changed files with 1 additions and 1 deletions
|
@ -818,7 +818,7 @@ export class SpaceStoreClass extends AsyncStoreWithClient<IState> {
|
|||
}
|
||||
|
||||
protected async onAction(payload: ActionPayload) {
|
||||
if (!spacesEnabled) return;
|
||||
if (!spacesEnabled || !this.matrixClient) return;
|
||||
switch (payload.action) {
|
||||
case "view_room": {
|
||||
// Don't auto-switch rooms when reacting to a context-switch
|
||||
|
|
Loading…
Reference in a new issue