Merge pull request #31830 from nextcloud/backport/31380/stable22

[stable22] Ignore errors when searching for bundled preview
This commit is contained in:
blizzz 2022-04-14 12:56:40 +02:00 committed by GitHub
commit 53f1f64d8e
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;
}
}