diff options
-rw-r--r-- | commands/account/import-mbox.go | 1 | ||||
-rw-r--r-- | commands/msg/recall.go | 1 | ||||
-rw-r--r-- | commands/msg/unsubscribe.go | 2 | ||||
-rw-r--r-- | worker/imap/connect.go | 1 |
4 files changed, 0 insertions, 5 deletions
diff --git a/commands/account/import-mbox.go b/commands/account/import-mbox.go index b497787b..9f0e7004 100644 --- a/commands/account/import-mbox.go +++ b/commands/account/import-mbox.go @@ -139,7 +139,6 @@ func (ImportMbox) Execute(aerc *widgets.Aerc, args []string) error { case "Yes": go importFolder() } - return }, ) aerc.AddDialog(confirm) diff --git a/commands/msg/recall.go b/commands/msg/recall.go index 1ce6ce6b..f0bafc73 100644 --- a/commands/msg/recall.go +++ b/commands/msg/recall.go @@ -131,7 +131,6 @@ func (Recall) Execute(aerc *widgets.Aerc, args []string) error { deleteMessage() default: } - return }, ) aerc.AddDialog(confirm) diff --git a/commands/msg/unsubscribe.go b/commands/msg/unsubscribe.go index 8895e6dc..3982f7ba 100644 --- a/commands/msg/unsubscribe.go +++ b/commands/msg/unsubscribe.go @@ -105,7 +105,6 @@ func (Unsubscribe) Execute(aerc *widgets.Aerc, args []string) error { } } aerc.PushError("Unsubscribe: selected method not found") - return }, ) aerc.AddDialog(dialog) @@ -190,7 +189,6 @@ func unsubscribeHTTP(aerc *widgets.Aerc, u *url.URL) error { default: aerc.PushError("Unsubscribe: link will not be opened") } - return }, ) aerc.AddDialog(confirm) diff --git a/worker/imap/connect.go b/worker/imap/connect.go index 35fd9b11..7c43b561 100644 --- a/worker/imap/connect.go +++ b/worker/imap/connect.go @@ -119,7 +119,6 @@ func newTCPConn(addr string, timeout time.Duration) (*net.TCPConn, error) { } done <- tcpConn{newConn, nil} - return }() select { |