]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Images.php
Fixed: ?? didn't work here as bool won't be seen as null
[friendica.git] / src / Util / Images.php
index c36ce26899886c446857d70df7c86c37433ae54b..4fa2eda04ad525f8a13600af30d7ddc3db04435e 100644 (file)
@@ -247,7 +247,7 @@ class Images
                        $data['size'] = $filesize;
                }
 
-               return $data ?? [];
+               return is_array($data) ? $data : [];
        }
 
        /**