Skip to content

Commit 706fe8f

Browse files
committed
fix: Disable imagick preview providers
Signed-off-by: Joas Schilling <coding@schilljs.com>
1 parent 515768b commit 706fe8f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/private/Preview/IMagickSupport.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ public function __construct(ICacheFactory $cacheFactory) {
2525
}
2626

2727
public function hasExtension(): bool {
28+
return false;
2829
return !is_null($this->imagick);
2930
}
3031

3132
public function supportsFormat(string $format): bool {
33+
return false;
3234
if (is_null($this->imagick)) {
3335
return false;
3436
}

0 commit comments

Comments
 (0)