Browse Source

Undo change "No need to be manager to see the join button" BT#12620

Julio 7 years ago
parent
commit
8647e35219
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugin/bbb/listing.php

+ 1 - 1
plugin/bbb/listing.php

@@ -129,7 +129,7 @@ $maxUsers = $bbb->getMaxUsersLimit();
 $status = $bbb->isServerRunning();
 $meetingExists = $bbb->meetingExists($bbb->getCurrentVideoConferenceName());
 $showJoinButton = false;
-if ($meetingExists && ($maxUsers == 0 || $maxUsers > $usersOnline)) {
+if (($meetingExists || $conferenceManager) && ($maxUsers == 0 || $maxUsers > $usersOnline)) {
     $showJoinButton = true;
 }
 $conferenceUrl = $bbb->getConferenceUrl();