Skip to content

Commit

Permalink
Corrected syntax to satisfy code checker
Browse files Browse the repository at this point in the history
  • Loading branch information
cebounph authored and jrchamp committed Mar 14, 2024
1 parent e868940 commit 02cdffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/webservice.php
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ public function get_user_recordings($userid, $from, $to) {
$recordinginfo->recordingstart = strtotime($recording->recording_start);

$recordings[$recording->id] = $recordinginfo;
}else if (!empty($recording->download_url) && isset($allowedrecordingtypes[$recording->file_type])) {
} else if (!empty($recording->download_url) && isset($allowedrecordingtypes[$recording->file_type])) {
$recordinginfo = new stdClass();
$recordinginfo->recordingid = $recording->id;
$recordinginfo->meetingid = $meeting->id;
Expand Down

0 comments on commit 02cdffc

Please sign in to comment.