Merge pull request #13661 from annando/warning

Fix warning: Undefined array key "mime"
This commit is contained in:
Hypolite Petovan
2023-11-22 22:00:56 -05:00
committed by GitHub

View File

@@ -244,12 +244,12 @@ class Images
$filesize = strlen($img_str);
try {
$data = (array)@getimagesizefromstring($img_str);
$data = @getimagesizefromstring($img_str);
} catch (\Exception $e) {
return [];
}
if (empty($data)) {
if (!$data) {
return [];
}