msgview/open: remove manual decoding

This commit is contained in:
Reto Brunner 2020-01-19 20:31:17 +01:00 committed by Drew DeVault
parent 5b3acb8034
commit 6b0483dd92
1 changed files with 0 additions and 11 deletions

View File

@ -1,13 +1,10 @@
package msgview package msgview
import ( import (
"encoding/base64"
"errors" "errors"
"io" "io"
"io/ioutil" "io/ioutil"
"mime/quotedprintable"
"os" "os"
"strings"
"time" "time"
"git.sr.ht/~sircmpwn/aerc/lib" "git.sr.ht/~sircmpwn/aerc/lib"
@ -37,14 +34,6 @@ func (Open) Execute(aerc *widgets.Aerc, args []string) error {
p := mv.SelectedMessagePart() p := mv.SelectedMessagePart()
p.Store.FetchBodyPart(p.Msg.Uid, p.Msg.BodyStructure, p.Index, func(reader io.Reader) { p.Store.FetchBodyPart(p.Msg.Uid, p.Msg.BodyStructure, p.Index, func(reader io.Reader) {
// email parts are encoded as 7bit (plaintext), quoted-printable, or base64
if strings.EqualFold(p.Part.Encoding, "base64") {
reader = base64.NewDecoder(base64.StdEncoding, reader)
} else if strings.EqualFold(p.Part.Encoding, "quoted-printable") {
reader = quotedprintable.NewReader(reader)
}
tmpFile, err := ioutil.TempFile(os.TempDir(), "aerc-") tmpFile, err := ioutil.TempFile(os.TempDir(), "aerc-")
if err != nil { if err != nil {
aerc.PushError(" " + err.Error()) aerc.PushError(" " + err.Error())