Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6874 from matrix-org/t3chguy/spaces-null-guard-cl…
Browse files Browse the repository at this point in the history
…ient
  • Loading branch information
t3chguy authored Sep 28, 2021
2 parents 8e497f8 + d71f234 commit 540593e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/SpaceStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 540593e

Please sign in to comment.