Skip to content

Commit

Permalink
CONTRIB-9475: Fix param name
Browse files Browse the repository at this point in the history
  • Loading branch information
ssj365 committed Mar 24, 2024
1 parent 5e9ec5d commit 3d2bdbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/meeting.php
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ protected function create_meeting_metadata() {
);
}
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);
Expand Down
4 changes: 2 additions & 2 deletions tests/generator/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ protected function create_mockserver_recording(instance $instance, stdClass $rec
'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(),
]),
Expand Down Expand Up @@ -344,7 +344,7 @@ public function create_meeting(array $data): stdClass {
],
]);
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);
Expand Down

0 comments on commit 3d2bdbb

Please sign in to comment.