From 511fea39449b6db551151da86d914bf7ab3b3713 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 20 May 2019 16:42:44 -0400 Subject: Flesh out multipart switcher --- worker/imap/fetch.go | 2 +- worker/types/messages.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'worker') diff --git a/worker/imap/fetch.go b/worker/imap/fetch.go index e3d8fa3..c5e7cd6 100644 --- a/worker/imap/fetch.go +++ b/worker/imap/fetch.go @@ -26,7 +26,7 @@ func (imapw *IMAPWorker) handleFetchMessageBodyPart( imapw.worker.Logger.Printf("Fetching message part") section := &imap.BodySectionName{} - section.Path = []int{msg.Part + 1} + section.Path = msg.Part items := []imap.FetchItem{section.FetchItem()} uids := imap.SeqSet{} uids.AddNum(msg.Uid) diff --git a/worker/types/messages.go b/worker/types/messages.go index 555e3ce..0169e05 100644 --- a/worker/types/messages.go +++ b/worker/types/messages.go @@ -94,7 +94,7 @@ type FetchFullMessages struct { type FetchMessageBodyPart struct { Message Uid uint32 - Part int + Part []int } type DeleteMessages struct { -- cgit v1.2.3