diff options
author | Max Kostikov <max@kostikov.co> | 2019-12-07 20:14:17 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-12-07 20:14:17 +0100 |
commit | aed682305173a67b2af1a56b8595445bec690e2b (patch) | |
tree | a022f3769332331a9c30f4b96a81a6b854690767 /Zotlabs/Storage/File.php | |
parent | 96f9e515466b749d1e1640aad3fd25bc19399f1a (diff) | |
download | volse-hubzilla-aed682305173a67b2af1a56b8595445bec690e2b.tar.gz volse-hubzilla-aed682305173a67b2af1a56b8595445bec690e2b.tar.bz2 volse-hubzilla-aed682305173a67b2af1a56b8595445bec690e2b.zip |
Add .webp image format support
Diffstat (limited to 'Zotlabs/Storage/File.php')
-rw-r--r-- | Zotlabs/Storage/File.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Storage/File.php b/Zotlabs/Storage/File.php index 4610aceb7..36aff1e05 100644 --- a/Zotlabs/Storage/File.php +++ b/Zotlabs/Storage/File.php @@ -169,7 +169,7 @@ class File extends DAV\Node implements DAV\IFile { } $gis = @getimagesize($f); logger('getimagesize: ' . print_r($gis,true), LOGGER_DATA); - if(($gis) && ($gis[2] === IMAGETYPE_GIF || $gis[2] === IMAGETYPE_JPEG || $gis[2] === IMAGETYPE_PNG)) { + if(($gis) && ($gis[2] === IMAGETYPE_GIF || $gis[2] === IMAGETYPE_JPEG || $gis[2] === IMAGETYPE_PNG || $gis[2] === IMAGETYPE_WEBP)) { $is_photo = 1; } |