-
Bug
-
Resolution: Not a bug
-
Minor
-
None
-
3.11.15
-
None
-
3.0
-
MOODLE_311_STABLE
Backport of MDL-80625
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); |