Skip to content

Commit

Permalink
Merge pull request #30 from call-learning/fix-recording-playback
Browse files Browse the repository at this point in the history
Fix recording playback value returned by the mock server.
  • Loading branch information
andrewnicols authored Feb 18, 2023
2 parents 60e0970 + 6039d7a commit 815ba4e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions application/src/Entity/Recording.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,7 @@ public function getRecordingInfo(): array
// Transform playbacks.
if ($playbacks = $this->getPlayback()) {
$formatarray = $playbacks['format'] ?? [];
$recordingInfo['playback'] = (object) [
'forcexmlarraytype' => 'format',
'array' => $formatarray
];
$recordingInfo['playback'] = $formatarray;
}
if ($this->getMeeting()->hasSubMeetings()) {
$breakoutRooms = [];
Expand Down

0 comments on commit 815ba4e

Please sign in to comment.