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