From d931bbeff149d603c3210db23aea50dbd3d88d57 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 27 Jul 2019 12:36:30 -0400 Subject: [PATCH] Add missing fallthrough --- commands/compose/send.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/compose/send.go b/commands/compose/send.go index 0574075..29da94d 100644 --- a/commands/compose/send.go +++ b/commands/compose/send.go @@ -196,8 +196,10 @@ func (_ Send) Execute(aerc *widgets.Aerc, args []string) error { } sendAsync := func() (int, error) { + fmt.Println(scheme) switch scheme { case "smtp": + fallthrough case "smtps": return smtpAsync() case "":