aboutsummaryrefslogtreecommitdiff
path: root/commands/msgview/save.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msgview/save.go')
-rw-r--r--commands/msgview/save.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/commands/msgview/save.go b/commands/msgview/save.go
index b15f42d..eff9c66 100644
--- a/commands/msgview/save.go
+++ b/commands/msgview/save.go
@@ -7,6 +7,7 @@ import (
"mime/quotedprintable"
"os"
"path/filepath"
+ "strings"
"time"
"git.sr.ht/~sircmpwn/aerc/widgets"
@@ -43,10 +44,10 @@ func Save(aerc *widgets.Aerc, args []string) error {
p.Store.FetchBodyPart(p.Msg.Uid, p.Index, func(reader io.Reader) {
// email parts are encoded as 7bit (plaintext), quoted-printable, or base64
- switch p.Part.Encoding {
- case "base64":
+
+ if strings.EqualFold(p.Part.Encoding, "base64") {
reader = base64.NewDecoder(base64.StdEncoding, reader)
- case "quoted-printable":
+ } else if strings.EqualFold(p.Part.Encoding, "quoted-printable") {
reader = quotedprintable.NewReader(reader)
}