mirror of https://github.com/vector-im/riot-web
cater for an undefined MatrixClient on rooms
parent
6606a1142d
commit
9731e275f8
|
@ -37,7 +37,7 @@ import EventTileBubble from "../messages/EventTileBubble";
|
||||||
import { ROOM_SECURITY_TAB } from "../dialogs/RoomSettingsDialog";
|
import { ROOM_SECURITY_TAB } from "../dialogs/RoomSettingsDialog";
|
||||||
|
|
||||||
function hasExpectedEncryptionSettings(room): boolean {
|
function hasExpectedEncryptionSettings(room): boolean {
|
||||||
const isEncrypted: boolean = room._client.isRoomEncrypted(room.roomId);
|
const isEncrypted: boolean = room._client?.isRoomEncrypted(room.roomId);
|
||||||
const isPublic: boolean = room.getJoinRule() === "public";
|
const isPublic: boolean = room.getJoinRule() === "public";
|
||||||
return isPublic || !privateShouldBeEncrypted() || isEncrypted;
|
return isPublic || !privateShouldBeEncrypted() || isEncrypted;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue