aboutsummaryrefslogtreecommitdiffstats
path: root/worker/notmuch/eventhandlers.go
diff options
context:
space:
mode:
Diffstat (limited to 'worker/notmuch/eventhandlers.go')
-rw-r--r--worker/notmuch/eventhandlers.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/worker/notmuch/eventhandlers.go b/worker/notmuch/eventhandlers.go
index 2b03d68b..996187fa 100644
--- a/worker/notmuch/eventhandlers.go
+++ b/worker/notmuch/eventhandlers.go
@@ -30,16 +30,14 @@ func (w *worker) handleUpdateDirCounts() error {
for name := range folders {
query := fmt.Sprintf("folder:%s", strconv.Quote(name))
w.w.PostMessage(&types.DirectoryInfo{
- Info: w.getDirectoryInfo(name, query),
- SkipSort: true,
+ Info: w.getDirectoryInfo(name, query),
}, nil)
}
}
for name, query := range w.nameQueryMap {
w.w.PostMessage(&types.DirectoryInfo{
- Info: w.getDirectoryInfo(name, query),
- SkipSort: true,
+ Info: w.getDirectoryInfo(name, query),
}, nil)
}
return nil