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 <213943+nickvergessen@users.noreply.github.com>2019-12-20 18:43:59 +0300
committerGitHub <noreply@github.com>2019-12-20 18:43:59 +0300
commitc30eccdd155c848147a9358368ceeaaf96e70623 (patch)
treedc5fe3d237817dc2c0fedbce3b1d6a165a9f21e5
parent2a20a69b6660676f23e1349bd590eb10ceaa9004 (diff)
parent63f25d76c61bcdcd71e3e2010971f512aa46ef50 (diff)
Merge pull request #2620 from nextcloud/bugfix/noid/allow-moderators-to-call-while-lobby-is-active
Allow moderators to call while the lobby is active, not others
-rw-r--r--src/components/TopBar/CallButton.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TopBar/CallButton.vue b/src/components/TopBar/CallButton.vue
index ffd3086ce..dae640f4d 100644
--- a/src/components/TopBar/CallButton.vue
+++ b/src/components/TopBar/CallButton.vue
@@ -80,7 +80,7 @@ export default {
isBlockedByLobby() {
return this.conversation.lobbyState === WEBINAR.LOBBY.NON_MODERATORS
- && this.isParticipantTypeModerator(this.conversation.participantType)
+ && !this.isParticipantTypeModerator(this.conversation.participantType)
},
startCallButtonDisabled() {