diff options
author | Reto Brunner <reto@labrat.space> | 2020-02-19 08:37:20 +0100 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-02-19 08:37:20 +0100 |
commit | d44bdc9fb99463081fa622589f7432191dd8b30d (patch) | |
tree | 969cc47ed46cda3ec7437544cd0d67069efdae21 /widgets/account.go | |
parent | bcab8de07272699e218bafb1c37c1871f3640336 (diff) | |
download | aerc-d44bdc9fb99463081fa622589f7432191dd8b30d.tar.gz |
Revert "Only fetch the directory contents when we are switching directories"
This reverts commit bd4df530095ee343778a59120a9e641c01010b0f.
I did not properly untangle the opening / dirlist update of each other.
This interferes with the imap worker, hence the revert
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 a83624fe..f8b6581f 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -242,6 +242,7 @@ 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) @@ -256,7 +257,6 @@ 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) |