Make the http handler of the unsubscribe command async

This commit is contained in:
Nicolai Dagestad 2020-04-13 23:05:52 +02:00 committed by Reto Brunner
parent 8c023cdb38
commit f35002ad0e
1 changed files with 2 additions and 1 deletions

View File

@ -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
}