Make the http handler of the unsubscribe command async
This commit is contained in:
parent
8c023cdb38
commit
f35002ad0e
|
@ -114,5 +114,6 @@ func unsubscribeMailto(aerc *widgets.Aerc, u *url.URL) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func unsubscribeHTTP(u *url.URL) error {
|
func unsubscribeHTTP(u *url.URL) error {
|
||||||
return lib.OpenFile(u.String())
|
go lib.OpenFile(u.String())
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue