diff --git a/mod/bigbluebuttonbn/classes/meeting.php b/mod/bigbluebuttonbn/classes/meeting.php index 25b9a34e258..095a09d8a20 100644 --- a/mod/bigbluebuttonbn/classes/meeting.php +++ b/mod/bigbluebuttonbn/classes/meeting.php @@ -462,7 +462,7 @@ class meeting { ); } if ((boolean) config::get('recordingready_enabled')) { - $metadata['bn-recording-ready-url'] = $this->instance->get_record_ready_url()->out(false); + $metadata['bbb-recording-ready-url'] = $this->instance->get_record_ready_url()->out(false); } if ((boolean) config::get('meetingevents_enabled')) { $metadata['analytics-callback-url'] = $this->instance->get_meeting_event_notification_url()->out(false); diff --git a/mod/bigbluebuttonbn/tests/generator/lib.php b/mod/bigbluebuttonbn/tests/generator/lib.php index c6970e6909d..81e46caa11a 100644 --- a/mod/bigbluebuttonbn/tests/generator/lib.php +++ b/mod/bigbluebuttonbn/tests/generator/lib.php @@ -246,7 +246,7 @@ class mod_bigbluebuttonbn_generator extends \testing_module_generator { 'sequence' => 1, 'meta' => [ 'bn-presenter-name' => $data['presentername'] ?? 'Fake presenter', - 'bn-recording-ready-url' => new moodle_url('/mod/bigbluebuttonbn/bbb_broker.php', [ + 'bbb-recording-ready-url' => new moodle_url('/mod/bigbluebuttonbn/bbb_broker.php', [ 'action' => 'recording_ready', 'bigbluebuttonbn' => $instance->get_instance_id() ]), @@ -352,7 +352,7 @@ class mod_bigbluebuttonbn_generator extends \testing_module_generator { ], ]); if ((boolean) config::get('recordingready_enabled')) { - $roomconfig['meta']['bn-recording-ready-url'] = $instance->get_record_ready_url()->out(false); + $roomconfig['meta']['bbb-recording-ready-url'] = $instance->get_record_ready_url()->out(false); } if ((boolean) config::get('meetingevents_enabled')) { $roomconfig['meta']['analytics-callback-url'] = $instance->get_meeting_event_notification_url()->out(false);