From b2511c54b07c3f4839cf674b5375afae95b7eadf Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Tue, 25 Aug 2020 09:46:52 -0400 Subject: [PATCH] Correct header counts for local items converted to stashed ones --- ui/stash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/stash.go b/ui/stash.go index ccaa0e8..961b170 100644 --- a/ui/stash.go +++ b/ui/stash.go @@ -686,7 +686,7 @@ func stashHeaderView(m stashModel) string { } localItems := m.countMarkdowns(localMarkdown) - stashedItems := m.countMarkdowns(stashedMarkdown) + stashedItems := m.countMarkdowns(stashedMarkdown) + m.countMarkdowns(convertedMarkdown) // Loading's finished and all we have is news. if !loading && localItems == 0 && stashedItems == 0 {