Merge pull request #31831 from nextcloud/backport/31380/stable23

[stable23] Ignore errors when searching for bundled preview
This commit is contained in:
blizzz 2022-04-14 22:15:20 +02:00 committed by GitHub
commit 798ea58c3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ abstract class Bundled extends ProviderV2 {
$image->fixOrientation();
return $image;
} catch (\Exception $e) {
} catch (\Throwable $e) {
return null;
}
}