diff --git a/core/img/favicon-touch.png b/core/img/favicon-touch.png index 635806813a..9754f8eb54 100644 Binary files a/core/img/favicon-touch.png and b/core/img/favicon-touch.png differ diff --git a/core/img/favicon-touch.svg b/core/img/favicon-touch.svg index 82dfdc4fd4..f2e5d24da3 100644 --- a/core/img/favicon-touch.svg +++ b/core/img/favicon-touch.svg @@ -1 +1 @@ - \ No newline at end of file + diff --git a/core/img/manifest.json b/core/img/manifest.json index fcecb85661..04e77df7a5 100644 --- a/core/img/manifest.json +++ b/core/img/manifest.json @@ -4,7 +4,7 @@ "icons": [{ "src": "favicon-touch.png", "type": "image/png", - "sizes": "128x128" + "sizes": "180x180" }, { "src": "favicon-mask.svg", "type": "image/svg+xml", diff --git a/lib/private/Preview/WebP.php b/lib/private/Preview/WebP.php index 8f10a08206..d2172b1242 100644 --- a/lib/private/Preview/WebP.php +++ b/lib/private/Preview/WebP.php @@ -37,6 +37,6 @@ class WebP extends Image { } public function isAvailable(FileInfo $file): bool { - return (bool)(imagetypes() && IMG_WEBP); + return (bool)(imagetypes() & IMG_WEBP); } }