diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-07-31 15:15:27 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-08-04 21:58:04 +0200 |
commit | 70bfcfef42578079f211d87cddc49519ee3503dc (patch) | |
tree | ae35c38e3980c73af2b43be10fe8cc9ece4f3f9a /worker/maildir/container.go | |
parent | 978d35d356e8752bdd272884df48a6289d88b40a (diff) | |
download | aerc-70bfcfef42578079f211d87cddc49519ee3503dc.tar.gz |
lint: work nicely with wrapped errors (errorlint)
Error wrapping as introduced in Go 1.13 adds some additional logic to
use for comparing errors and adding information to it.
Signed-off-by: Moritz Poldrack <moritz@poldrack.dev>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'worker/maildir/container.go')
-rw-r--r-- | worker/maildir/container.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/worker/maildir/container.go b/worker/maildir/container.go index 35125775..a8ac1aca 100644 --- a/worker/maildir/container.go +++ b/worker/maildir/container.go @@ -50,7 +50,7 @@ func (c *Container) ListFolders() ([]string, error) { } err := filepath.Walk(c.dir, func(path string, info os.FileInfo, err error) error { if err != nil { - return fmt.Errorf("Invalid path '%s': error: %v", path, err) + return fmt.Errorf("Invalid path '%s': error: %w", path, err) } if !info.IsDir() { return nil @@ -144,7 +144,7 @@ func (c *Container) ClearRecentFlag(uid uint32) { func (c *Container) UIDs(d maildir.Dir) ([]uint32, error) { keys, err := d.Keys() if err != nil { - return nil, fmt.Errorf("could not get keys for %s: %v", d, err) + return nil, fmt.Errorf("could not get keys for %s: %w", d, err) } sort.Strings(keys) var uids []uint32 @@ -189,7 +189,7 @@ func (c *Container) CopyAll( ) error { for _, uid := range uids { if err := c.copyMessage(dest, src, uid); err != nil { - return fmt.Errorf("could not copy message %d: %v", uid, err) + return fmt.Errorf("could not copy message %d: %w", uid, err) } } return nil |