-
Bug
-
Resolution: Fixed
-
Minor
-
4.3.2
There is a mistake in:
// line: 468
|
// mod/bigbluebuttonbn/classes/meeting.php
|
|
$metadata['bn-recording-ready-url'] = $this->instance->get_record_ready_url()->out(false); |
But there is no parameter `bn-recording-ready-url` defined in BBB-API document. The correct code must be:
// correct:
|
$metadata['bbb-recording-ready-url'] = $this->instance->get_record_ready_url()->out(false); |