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/recall.go | |
parent | bae678e8f20605b64596c9e976623f2a37247adb (diff) | |
download | aerc-13a6a3fa7109ce6dcff79ea9ed2a012226386fad.tar.gz |
FetchBodyPart doesn't need the parent body structure
Diffstat (limited to 'commands/msg/recall.go')
-rw-r--r-- | commands/msg/recall.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |