Fix WebP availability check

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2021-02-11 11:31:38 +01:00 committed by backportbot[bot]
parent 1afa136060
commit cb3199f061
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ class WebP extends Image {
}
public function isAvailable(FileInfo $file): bool {
return (bool)(imagetypes() && IMG_WEBP);
return (bool)(imagetypes() & IMG_WEBP);
}
}