From c8461eb0b540a78704f2a1db466ae9646725d591 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 28 Sep 2024 20:31:09 +0200 Subject: [PATCH] Fix https://github.com/firefly-iii/firefly-iii/issues/9281 --- app/Support/Twig/General.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Twig/General.php b/app/Support/Twig/General.php index a73fddaaec..33557a4453 100644 --- a/app/Support/Twig/General.php +++ b/app/Support/Twig/General.php @@ -74,6 +74,7 @@ class General extends AbstractExtension $strings = []; foreach ($info as $currencyId => $balance) { + $balance= (string) $balance; if (0 === $currencyId) { // not good code but OK /** @var AccountRepositoryInterface $accountRepos */