diff options
author | Reto Brunner <reto@labrat.space> | 2020-02-15 14:14:42 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-02-16 10:41:15 -0500 |
commit | bd4df530095ee343778a59120a9e641c01010b0f (patch) | |
tree | 2995671ce6986d39b3389ce7ffad0b15e3a162c3 /widgets/account.go | |
parent | 30c0a9fba471bcd023c8aeebb3901803bb35d31f (diff) | |
download | aerc-bd4df530095ee343778a59120a9e641c01010b0f.tar.gz |
Only fetch the directory contents when we are switching directories
Previously, sending a DirectoryInfo assumed that a directory change
happened. However we don't want that if we only want to update the
unread message count.
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/account.go b/widgets/account.go index f8b6581f..a83624fe 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -242,7 +242,6 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { store.Update(msg) } else { store = lib.NewMessageStore(acct.worker, msg.Info, - acct.getSortCriteria(), func(msg *models.MessageInfo) { acct.conf.Triggers.ExecNewEmail(acct.acct, acct.conf, msg) @@ -257,6 +256,7 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { acct.msglist.SetStore(store) }) } + acct.dirlist.Invalidate() case *types.DirectoryContents: if store, ok := acct.dirlist.SelectedMsgStore(); ok { store.Update(msg) |