]> git.mxchange.org Git - friendica.git/commitdiff
Now only resize if supported
authorMichael <heluecht@pirati.ca>
Sat, 21 Oct 2017 15:31:31 +0000 (15:31 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 21 Oct 2017 15:31:31 +0000 (15:31 +0000)
mod/photo.php

index 1a814f5efc8b843f254179f4bdde3826ffd4b237..e223808307f08e5534e35b12a9ba75568734fad7 100644 (file)
@@ -163,8 +163,8 @@ function photo_init(App $a) {
                }
        }
 
-       // Resize only if its not a GIF
-       if ($mimetype != "image/gif") {
+       // Resize only if its not a GIF and it is supported by the library
+       if (($mimetype != "image/gif") && in_array($mimetype, Photo::supportedTypes())) {
                $ph = new Photo($data, $mimetype);
                if ($ph->is_valid()) {
                        if (isset($customres) && $customres > 0 && $customres < 500) {