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 #6945 from matrix-org/t3chguy/fix/19390
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy committed Oct 14, 2021
2 parents 4d8346f + 069a8d0 commit 6bb47ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/structures/SpaceRoomView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ import { useAsyncMemo } from "../../hooks/useAsyncMemo";
import Spinner from "../views/elements/Spinner";
import GroupAvatar from "../views/avatars/GroupAvatar";
import { useDispatcher } from "../../hooks/useDispatcher";
import { useRoomState } from "../../hooks/useRoomState";

import { logger } from "matrix-js-sdk/src/logger";
import { shouldShowComponent } from "../../customisations/helpers/UIComponents";
Expand Down Expand Up @@ -127,7 +128,7 @@ const useMyRoomMembership = (room: Room) => {
};

const SpaceInfo = ({ space }) => {
const joinRule = space.getJoinRule();
const joinRule = useRoomState(space, state => state.getJoinRule());

let visibilitySection;
if (joinRule === "public") {
Expand Down Expand Up @@ -207,8 +208,9 @@ const SpacePreview = ({ space, onJoinButtonClicked, onRejectButtonClicked }: ISp

const spacesEnabled = SpaceStore.spacesEnabled;

const joinRule = useRoomState(space, state => state.getJoinRule());
const cannotJoin = getEffectiveMembership(myMembership) === EffectiveMembership.Leave
&& space.getJoinRule() !== JoinRule.Public;
&& joinRule !== JoinRule.Public;

let inviterSection;
let joinButtons;
Expand Down

0 comments on commit 6bb47ec

Please sign in to comment.