From f6c5b04fee4884edc36c36a0b57d3f73f79c86e6 Mon Sep 17 00:00:00 2001 From: Martin Michlmayr Date: Fri, 30 Oct 2020 15:57:05 +0800 Subject: Fix regression in sorted_amounts Commit 557ab32 ("Expose a new utility function for balances: sorted_amounts") split out some code into a separate function. Unfortunately, in the process an "if" statement was dropped, leading to amounts being shown that shouldn't be shown because they are smaller than the display precision. Fixes #1969 --- src/balance.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/balance.cc b/src/balance.cc index 0a2a3fec..5d8785db 100644 --- a/src/balance.cc +++ b/src/balance.cc @@ -273,7 +273,8 @@ balance_t::strip_annotations(const keep_details_t& what_to_keep) const void balance_t::sorted_amounts(amounts_array& sorted) const { foreach (const amounts_map::value_type& pair, amounts) - sorted.push_back(&pair.second); + if (pair.second) + sorted.push_back(&pair.second); std::stable_sort( sorted.begin(), sorted.end(), [](const amount_t * left, const amount_t * right) { -- cgit v1.2.3