Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-22 13:37:20 +0300
committerJoas Schilling <coding@schilljs.com>2021-10-07 19:18:30 +0300
commit390ae657a18523bb0b39f6531fa27de9bb075410 (patch)
tree1782ae950637d44d033e3a3b6f112ff4b529a2e1 /src/mixins
parenta0e1168db04100c153133a5fcb0d1440a2e22644 (diff)
Introduce different layers for permissions
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/mixins')
-rw-r--r--src/mixins/isInLobby.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mixins/isInLobby.js b/src/mixins/isInLobby.js
index d7cb4838b..189f0f881 100644
--- a/src/mixins/isInLobby.js
+++ b/src/mixins/isInLobby.js
@@ -42,7 +42,7 @@ export default {
return this.conversation
&& this.conversation.lobbyState === WEBINAR.LOBBY.NON_MODERATORS
&& !this.isModerator
- && (this.conversation.publishingPermissions & PARTICIPANT.PERMISSIONS.LOBBY_IGNORE) === 0
+ && (this.conversation.permissions & PARTICIPANT.PERMISSIONS.LOBBY_IGNORE) === 0
},
},