From db9094956e6caa51aef78c383fbd494753bff09e Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 21 Jan 2024 07:24:16 +0100 Subject: [PATCH] Support even bigger amounts for https://github.com/firefly-iii/firefly-iii/issues/8431 --- app/Support/Validation/ValidatesAmountsTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Validation/ValidatesAmountsTrait.php b/app/Support/Validation/ValidatesAmountsTrait.php index 56e05e8669..f305c74d5d 100644 --- a/app/Support/Validation/ValidatesAmountsTrait.php +++ b/app/Support/Validation/ValidatesAmountsTrait.php @@ -25,7 +25,7 @@ namespace FireflyIII\Support\Validation; trait ValidatesAmountsTrait { - protected const string BIG_AMOUNT = '100001709'; + protected const string BIG_AMOUNT = '10000170900'; final protected function emptyString(string $value): bool {