Fixed: ?? didn't work here as bool won't be seen as null

This commit is contained in:
Roland Häder
2022-06-22 17:09:20 +02:00
parent 78bf7f187c
commit eb231bc548

View File

@@ -247,7 +247,7 @@ class Images
$data['size'] = $filesize;
}
return $data ?? [];
return is_array($data) ? $data : [];
}
/**