diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-20 16:42:44 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-20 16:43:08 -0400 |
commit | 511fea39449b6db551151da86d914bf7ab3b3713 (patch) | |
tree | 12171a8d34d850265f6bd96d8d3ead372b8dbdbc /lib | |
parent | 3376f926ed2ed7184d2710c85c327b9357e2bea4 (diff) | |
download | aerc-511fea39449b6db551151da86d914bf7ab3b3713.tar.gz |
Flesh out multipart switcher
Diffstat (limited to 'lib')
-rw-r--r-- | lib/msgstore.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msgstore.go b/lib/msgstore.go index 827d7cb..6ab7fc2 100644 --- a/lib/msgstore.go +++ b/lib/msgstore.go @@ -90,7 +90,7 @@ func (store *MessageStore) FetchFull(uids []uint32, cb func(io.Reader)) { } func (store *MessageStore) FetchBodyPart( - uid uint32, part int, cb func(io.Reader)) { + uid uint32, part []int, cb func(io.Reader)) { store.worker.PostAction(&types.FetchMessageBodyPart{ Uid: uid, |