We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a08e669 commit 204a944Copy full SHA for 204a944
1 file changed
classes/webservice.php
@@ -1144,6 +1144,10 @@ public function get_recording_url_list($meetingid) {
1144
}
1145
1146
if (empty($response->recording_files)) {
1147
+ if (!isset($response->recording_count) {
1148
+ throw new bad_request_exception("recording_count: undefined", 400);
1149
+ }
1150
+
1151
$recordingcount = (int) $response->recording_count;
1152
$audiocount = count($response->participant_audio_files);
1153
if ($recordingcount !== $audiocount) {
0 commit comments