Merge pull request #25011 from nextcloud/fix/23197/catch_throwable

Catch throwable instead of exception
This commit is contained in:
Roeland Jago Douma 2021-01-07 15:22:36 +01:00 committed by GitHub
commit 82947263b9
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;
}