diff options
Diffstat (limited to 'worker/imap')
-rw-r--r-- | worker/imap/open.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worker/imap/open.go b/worker/imap/open.go index 15cfa313..c734ba8b 100644 --- a/worker/imap/open.go +++ b/worker/imap/open.go @@ -130,7 +130,7 @@ func (imapw *IMAPWorker) handleDirectoryThreaded( // Only initialize if we are not filtering var uids []uint32 for i := len(aercThreads) - 1; i >= 0; i-- { - aercThreads[i].Walk(func(t *types.Thread, level int, currentErr error) error { + aercThreads[i].Walk(func(t *types.Thread, level int, currentErr error) error { //nolint:errcheck // error indicates skipped threads uids = append(uids, t.Uid) return nil }) |