Skip to content

Commit

Permalink
fix class loading with new hashing algorythm
Browse files Browse the repository at this point in the history
FIX class loading. Now we initiate the BBB API on parent class to use the new hashing algorythm. It's not necessary to use our own urlBuilder instance.
  • Loading branch information
xJuvi authored Jan 31, 2024
1 parent b70c75d commit 663d92a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions classes/class.ilBBB.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ class ilBBB extends BigBlueButton
{
public function __construct($securitySecret=null, $baseUrl=null)
{
parent::__construct();
$this->securitySecret = $securitySecret;
$this->bbbServerBaseUrl = $baseUrl;
$this->urlBuilder = new UrlBuilder($this->securitySecret, $this->bbbServerBaseUrl);
parent::__construct($baseUrl, $securitySecret);

//Add Proxy
if(ilProxySettings::_getInstance()->isActive())
{
Expand Down

0 comments on commit 663d92a

Please sign in to comment.