diff --git a/commands/msg/unsubscribe.go b/commands/msg/unsubscribe.go index 682b2b5..1bf3a83 100644 --- a/commands/msg/unsubscribe.go +++ b/commands/msg/unsubscribe.go @@ -114,5 +114,6 @@ func unsubscribeMailto(aerc *widgets.Aerc, u *url.URL) error { } func unsubscribeHTTP(u *url.URL) error { - return lib.OpenFile(u.String()) + go lib.OpenFile(u.String()) + return nil }