diff options
author | Reto Brunner <reto@labrat.space> | 2020-05-17 11:44:38 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-05-17 11:44:38 +0200 |
commit | 13a6a3fa7109ce6dcff79ea9ed2a012226386fad (patch) | |
tree | f182c5d8f8dbaf5a6445b5c226a229faa7005efa /commands/msg | |
parent | bae678e8f20605b64596c9e976623f2a37247adb (diff) | |
download | aerc-13a6a3fa7109ce6dcff79ea9ed2a012226386fad.tar.gz |
FetchBodyPart doesn't need the parent body structure
Diffstat (limited to 'commands/msg')
-rw-r--r-- | commands/msg/forward.go | 2 | ||||
-rw-r--r-- | commands/msg/pipe.go | 2 | ||||
-rw-r--r-- | commands/msg/recall.go | 2 | ||||
-rw-r--r-- | commands/msg/reply.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/commands/msg/forward.go b/commands/msg/forward.go index 0b81e52..c044fb6 100644 --- a/commands/msg/forward.go +++ b/commands/msg/forward.go @@ -138,7 +138,7 @@ func (forward) Execute(aerc *widgets.Aerc, args []string) error { // TODO: something more intelligent than fetching the 1st part // TODO: add attachments! - store.FetchBodyPart(msg.Uid, msg.BodyStructure, []int{1}, func(reader io.Reader) { + store.FetchBodyPart(msg.Uid, []int{1}, func(reader io.Reader) { buf := new(bytes.Buffer) buf.ReadFrom(reader) original.Text = buf.String() diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 44b0067..c88d61f 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -127,7 +127,7 @@ func (Pipe) Execute(aerc *widgets.Aerc, args []string) error { } else if pipePart { p := provider.SelectedMessagePart() store := provider.Store() - store.FetchBodyPart(p.Msg.Uid, p.Msg.BodyStructure, p.Index, func(reader io.Reader) { + store.FetchBodyPart(p.Msg.Uid, p.Index, func(reader io.Reader) { if background { doExec(reader) } else { diff --git a/commands/msg/recall.go b/commands/msg/recall.go index c2f887a..ef7e859 100644 --- a/commands/msg/recall.go +++ b/commands/msg/recall.go @@ -114,7 +114,7 @@ func (Recall) Execute(aerc *widgets.Aerc, args []string) error { path = []int{1} } - store.FetchBodyPart(msgInfo.Uid, part, path, func(reader io.Reader) { + store.FetchBodyPart(msgInfo.Uid, path, func(reader io.Reader) { header := message.Header{} header.SetText( "Content-Transfer-Encoding", part.Encoding) diff --git a/commands/msg/reply.go b/commands/msg/reply.go index 74f0097..72c992e 100644 --- a/commands/msg/reply.go +++ b/commands/msg/reply.go @@ -165,7 +165,7 @@ func (reply) Execute(aerc *widgets.Aerc, args []string) error { template = aerc.Config().Templates.QuotedReply } - store.FetchBodyPart(msg.Uid, msg.BodyStructure, []int{1}, func(reader io.Reader) { + store.FetchBodyPart(msg.Uid, []int{1}, func(reader io.Reader) { buf := new(bytes.Buffer) buf.ReadFrom(reader) original.Text = buf.String() |