aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
Diffstat (limited to 'commands')
-rw-r--r--commands/account/reply.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/account/reply.go b/commands/account/reply.go
index f55d448..cd07ec9 100644
--- a/commands/account/reply.go
+++ b/commands/account/reply.go
@@ -123,8 +123,8 @@ func Reply(aerc *widgets.Aerc, args []string) error {
}
if quote {
- // TODO: something more intelligent than fetching the 0th part
- store.FetchBodyPart(msg.Uid, 0, func(reader io.Reader) {
+ // TODO: something more intelligent than fetching the 1st part
+ store.FetchBodyPart(msg.Uid, []int{1}, func(reader io.Reader) {
header := message.Header{}
header.SetText(
"Content-Transfer-Encoding", msg.BodyStructure.Encoding)