Merge pull request #25013 from nextcloud/backport/25011/stable20

[stable20] Catch throwable instead of exception
This commit is contained in:
blizzz 2021-01-07 18:14:22 +01:00 committed by GitHub
commit b2cfd43b8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ class Storage implements IStorage {
$fallback = false;
try {
$clearData = $this->crypto->decrypt($data);
} catch (\Exception $e) {
} catch (\Throwable $e) {
$fallback = true;
}