Merge pull request #4171 from IgorA100/patch-438287

Fix: incorrect placement of brackets (event.php)
pull/4175/head
Isaac Connor 2024-10-10 13:52:33 -04:00 committed by GitHub
commit f1a72c909d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ if ((!$replayMode) or !$replayModes[$replayMode]) {
}
$video_tag = ($codec == 'MP4') ||
((false !== strpos($Event->DefaultVideo(), 'h264')) || (false !== strpos($Event->DefaultVideo(), 'av1')) && ($codec === 'auto'));
((false !== strpos($Event->DefaultVideo(), 'h264') || false !== strpos($Event->DefaultVideo(), 'av1')) && ($codec === 'auto'));
// videojs zoomrotate only when direct recording
$Zoom = 1;