diff options
author | Reto Brunner <reto@labrat.space> | 2020-02-15 14:14:43 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-02-16 10:41:16 -0500 |
commit | 66b68f35b3f3f3b97ec9951397fd75afeb0d0995 (patch) | |
tree | 126a15cbae36f3e4794668b80b26e85c42f02631 /models/models.go | |
parent | bd4df530095ee343778a59120a9e641c01010b0f (diff) | |
download | aerc-66b68f35b3f3f3b97ec9951397fd75afeb0d0995.tar.gz |
dirlist: actually honor the DirInfo
Currently the dirlist ignores the counts provided by the dirInfo. However some of the workers can actually provide accurate counts much quicker than if we count the flags. Eventually we will also want to enable displaying counts for background folders, where the brute force counting won't work as none of the headers are fetched yet. This commit models it in an opt-in manner, if the flag isn't set then we still count the messages manually.
Diffstat (limited to 'models/models.go')
-rw-r--r-- | models/models.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/models/models.go b/models/models.go index 8d254a1..7654cf0 100644 --- a/models/models.go +++ b/models/models.go @@ -50,6 +50,9 @@ type DirectoryInfo struct { // The number of unread messages Unseen int + + // set to true if the value counts are accurate + AccurateCounts bool } // A MessageInfo holds information about the structure of a message |