Fix error in catching error exception

This commit is contained in:
DariusIII
2021-12-29 12:43:59 +01:00
parent 1d6f49bf6a
commit 843c86ca35
@@ -2161,7 +2161,7 @@ class ProcessAdditional
Log::debug($e->getMessage());
return false;
} catch (\ErrorException) {
} catch (\ErrorException $e) {
Log::debug($e->getMessage());
return false;