From 87d2ee0858bc61251f8af97395ff240d850ba80f Mon Sep 17 00:00:00 2001 From: dreautall <109872040+dreautall@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:00:53 +0000 Subject: [PATCH] don't use new version before API version 2.0.7 (firefly 6.0.22) otherwise chart breaks due to https://github.com/firefly-iii/firefly-iii/issues/7910 --- lib/pages/home/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pages/home/main.dart b/lib/pages/home/main.dart index dafa42fc..9a968d92 100644 --- a/lib/pages/home/main.dart +++ b/lib/pages/home/main.dart @@ -74,7 +74,7 @@ class _HomeMainState extends State lastDaysIncome.clear(); // With a new API the number of API calls is reduced from 14 to 2 - if (context.read().apiVersion! >= Version(2, 0, 6)) { + if (context.read().apiVersion! >= Version(2, 0, 7)) { final FireflyIiiV2 apiV2 = context.read().apiV2; final List accounts = [];