mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
fix guest access; broken since Aug 18
This commit is contained in:
parent
031daf7b3c
commit
1bc26cb6c5
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ export const MENTIONS_ONLY = 'mentions_only';
|
|||
export const MUTE = 'mute';
|
||||
|
||||
export function getRoomNotifsState(roomId) {
|
||||
if (MatrixClientPeg.get().isGuest()) return RoomNotifs.ALL_MESSAGES;
|
||||
if (MatrixClientPeg.get().isGuest()) return ALL_MESSAGES;
|
||||
|
||||
// look through the override rules for a rule affecting this room:
|
||||
// if one exists, it will take precedence.
|
||||
|
|
Loading…
Reference in a new issue