aboutsummaryrefslogtreecommitdiffstats
path: root/commands/msg
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg')
-rw-r--r--commands/msg/forward.go2
1 files changed, 1 insertions, 1 deletions
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 {