Catch throwable instead of exception

The error that gets thrown can also be a type error etc. So we should
properly catch the Throwable.

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2021-01-07 14:32:26 +01:00 committed by backportbot[bot]
parent 8295cc90d8
commit cb958df63a
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;
}