Skip to content

Commit

Permalink
Merge pull request #13577 from nextcloud/backport/13576/stable30
Browse files Browse the repository at this point in the history
[stable30] fix(call): Fix support for PHP < 8.3
  • Loading branch information
nickvergessen authored Oct 18, 2024
2 parents dc2637c + 5dd6c36 commit da35220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/CallController.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public function downloadParticipantsForCall(string $format = 'csv'): DataDownloa

try {
$dateTimeZone = new \DateTimeZone($timezone);
} catch (\DateInvalidTimeZoneException) {
} catch (\Throwable) {
$dateTimeZone = null;
}

Expand Down

0 comments on commit da35220

Please sign in to comment.