Skip to content

Commit

Permalink
FIX: check allowed sessions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeph864 committed Dec 10, 2024
1 parent 64254f6 commit dabcef3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion guest.php
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,8 @@ private function __construct()
if($available_sessions['max_sessions'] || ( key_exists($this->pluginObject->getBBBId(), $available_sessions['meetings']) && $available_sessions['meetings'][$this->pluginObject->getBBBId()]['userlimit'])){
$this->errState['userLimit'] = true;
}
}else if( !$this->errState['displayname'] ) {
}
if( !$this->errState['displayname'] ) {
$this->bbb = new ilBBB($this->pluginConfig->getSvrSalt(), $this->pluginConfig->getSvrPublicUrl());
$this->attendeePwd = $this->pluginObject->getAttendeePwd();
$this->setMeetingId();
Expand Down

0 comments on commit dabcef3

Please sign in to comment.