Skip to content

Commit

Permalink
BBB Plugin: Fix for Global conference per user showing all conference…
Browse files Browse the repository at this point in the history
…s from the plateform instead of only the user's conference -refs #4233 and BT#20053
  • Loading branch information
NicoDucou committed Jul 25, 2022
1 parent 6fac4bc commit d744321
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plugin/bbb/lib/bbb.lib.php
Expand Up @@ -945,6 +945,16 @@ public function getMeetings(
),
);
}
}
if ($this->isGlobalConference()) {
$conditions = array(
'where' => array(
'c_id = ? AND user_id = ?' => array(
0,
$this->userId,
),
),
);
}

if (!empty($dateRange)) {
Expand Down

0 comments on commit d744321

Please sign in to comment.