Fixed description for logging if getid3 exists

This commit is contained in:
Codenift 2019-10-13 15:31:21 -04:00 committed by GitHub
parent 88f90f33b9
commit 8cc48eb47f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -118,7 +118,7 @@ class FileDataHelper {
$getFileInfo = $getID3->analyze($analyzeFile); $getFileInfo = $getID3->analyze($analyzeFile);
} else { } else {
$getFileInfo = []; $getFileInfo = [];
Logging::error("Failed to load getid3 library. Please run either 'composer install' or the 'install' script."); Logging::error("Failed to load getid3 library. Please upgrade script.");
} }
if(isset($getFileInfo['comments']['picture'][0])) { if(isset($getFileInfo['comments']['picture'][0])) {
@ -198,7 +198,7 @@ class FileDataHelper {
$getFileInfo = $getID3->analyze($fullpath); $getFileInfo = $getID3->analyze($fullpath);
} else { } else {
$getFileInfo = []; $getFileInfo = [];
Logging::error("Failed to load getid3 library. Please run either 'composer install' or the 'install' script."); Logging::error("Failed to load getid3 library. Please upgrade script.");
} }
if(isset($getFileInfo['comments']['picture'][0])) { if(isset($getFileInfo['comments']['picture'][0])) {