From 430b17c92ee8e15bacce2c058d3e56f187da5fc3 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 11 Aug 2019 19:47:39 -0400 Subject: validate reconciled amounts, and also handle split transactions --- src/ynab/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ynab/client.rs') diff --git a/src/ynab/client.rs b/src/ynab/client.rs index a2fbdb3..852481a 100644 --- a/src/ynab/client.rs +++ b/src/ynab/client.rs @@ -26,6 +26,6 @@ impl Client { .unwrap() .data .budget; - super::budget::Budget::new(&self.api, full_budget) + super::budget::Budget::new(full_budget) } } -- cgit v1.2.3-54-g00ecf