From 7a379f169e49d0f675a95c9e66e06f51c865187a Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Thu, 27 Jun 2024 10:38:54 -0300 Subject: [PATCH] Update --- objects/functionsExec.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objects/functionsExec.php b/objects/functionsExec.php index 41fc0a3eb88d..cd409740779e 100644 --- a/objects/functionsExec.php +++ b/objects/functionsExec.php @@ -23,14 +23,14 @@ function getDurationFromFile($file) if (!file_exists($videoFile)) { $file_headers = @get_headers($videoFile); if (!$file_headers || $file_headers[0] == 'HTTP/1.1 404 Not Found') { - error_log('getDurationFromFile try 1, File (' . $videoFile . ') Not Found'); + error_log('getDurationFromFile try 1, File (' . $videoFile . ') Not Found original='.$file); $videoFile = $hls; } } if (!file_exists($videoFile)) { $file_headers = @get_headers($videoFile); if (!$file_headers || $file_headers[0] == 'HTTP/1.1 404 Not Found') { - error_log('getDurationFromFile try 2, File (' . $videoFile . ') Not Found'); + error_log('getDurationFromFile try 2, File (' . $videoFile . ') Not Found original='.$file); $videoFile = ''; } }