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 /lib | |
parent | bae678e8f20605b64596c9e976623f2a37247adb (diff) | |
download | aerc-13a6a3fa7109ce6dcff79ea9ed2a012226386fad.tar.gz |
FetchBodyPart doesn't need the parent body structure
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, |