]> git.mxchange.org Git - friendica.git/commitdiff
Fix calls for pictures without blurhash
authorMichael <heluecht@pirati.ca>
Sun, 4 Dec 2022 15:14:43 +0000 (15:14 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 4 Dec 2022 15:14:43 +0000 (15:14 +0000)
src/Model/Photo.php

index 6dd9212832fe9c830d406fc89b592a727846c9a6..f9940f51e36ef60ab6614e973e8f4690b3c7f152 100644 (file)
@@ -353,7 +353,7 @@ class Photo
         * @return array
         * @throws \Exception
         */
-       public static function createPhotoForExternalResource(string $url, int $uid = 0, string $mimetype = '', string $blurhash = '', int $width = 0, int $height = 0): array
+       public static function createPhotoForExternalResource(string $url, int $uid = 0, string $mimetype = '', string $blurhash = null, int $width = null, int $height = null): array
        {
                if (empty($mimetype)) {
                        $mimetype = Images::guessTypeByExtension($url);