From aa3e467a3e754740b6dbd098cea1c4d89a1158f4 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 26 Oct 2020 16:22:20 +0100 Subject: [PATCH] Add message so exception isn't empty. --- app/Support/Amount.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Amount.php b/app/Support/Amount.php index 7c5f99728d..a585a86b5c 100644 --- a/app/Support/Amount.php +++ b/app/Support/Amount.php @@ -350,6 +350,7 @@ class Amount try { $value = Crypt::decrypt($value); // verified } catch (DecryptException $e) { + // ignore decryption error. } return $value;