diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/messageview.go | 8 | ||||
-rw-r--r-- | lib/msgstore.go | 3 |
2 files changed, 4 insertions, 7 deletions
diff --git a/lib/messageview.go b/lib/messageview.go index 3970804..59a1af6 100644 --- a/lib/messageview.go +++ b/lib/messageview.go @@ -28,8 +28,7 @@ type MessageView interface { Store() *MessageStore // Fetches a specific body part for this message - FetchBodyPart(parent *models.BodyStructure, - part []int, cb func(io.Reader)) + FetchBodyPart(part []int, cb func(io.Reader)) PGPDetails() *openpgp.MessageDetails } @@ -110,11 +109,10 @@ func (msv *MessageStoreView) PGPDetails() *openpgp.MessageDetails { return msv.details } -func (msv *MessageStoreView) FetchBodyPart(parent *models.BodyStructure, - part []int, cb func(io.Reader)) { +func (msv *MessageStoreView) FetchBodyPart(part []int, cb func(io.Reader)) { if msv.message == nil { - msv.messageStore.FetchBodyPart(msv.messageInfo.Uid, parent, part, cb) + msv.messageStore.FetchBodyPart(msv.messageInfo.Uid, part, cb) return } diff --git a/lib/msgstore.go b/lib/msgstore.go index 3fe26cb..7dc2689 100644 --- a/lib/msgstore.go +++ b/lib/msgstore.go @@ -136,8 +136,7 @@ func (store *MessageStore) FetchFull(uids []uint32, cb func(*types.FullMessage)) } } -func (store *MessageStore) FetchBodyPart( - uid uint32, parent *models.BodyStructure, part []int, cb func(io.Reader)) { +func (store *MessageStore) FetchBodyPart(uid uint32, part []int, cb func(io.Reader)) { store.worker.PostAction(&types.FetchMessageBodyPart{ Uid: uid, |