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 /commands | |
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 'commands')
-rw-r--r-- | commands/move-tab.go | 2 | ||||
-rw-r--r-- | commands/msg/forward.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/move-tab.go b/commands/move-tab.go index 8648ed3d..76e5348d 100644 --- a/commands/move-tab.go +++ b/commands/move-tab.go @@ -31,7 +31,7 @@ func (MoveTab) Execute(aerc *widgets.Aerc, args []string) error { n, err := strconv.Atoi(joinedArgs) if err != nil { - return fmt.Errorf("failed to parse index argument: %v", err) + return fmt.Errorf("failed to parse index argument: %w", err) } var relative bool diff --git a/commands/msg/forward.go b/commands/msg/forward.go index ddc27910..d89667ae 100644 --- a/commands/msg/forward.go +++ b/commands/msg/forward.go @@ -85,7 +85,7 @@ func (forward) Execute(aerc *widgets.Aerc, args []string) error { if strings.Contains(to, "@") { tolist, err = mail.ParseAddressList(to) if err != nil { - return fmt.Errorf("invalid to address(es): %v", err) + return fmt.Errorf("invalid to address(es): %w", err) } } if len(tolist) > 0 { |