diff options
author | Koni Marti <koni.marti@gmail.com> | 2022-08-08 22:21:43 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-08-22 09:30:37 +0200 |
commit | 16dbb9422120a2f229524f1cbee55f09e455b1d7 (patch) | |
tree | 6ee55215802e3993a4c628c3bbcde6d7a5068881 /lib/marker/marker.go | |
parent | 22e6c9e4fac70c9542d10464f88553c1f20ce577 (diff) | |
download | aerc-16dbb9422120a2f229524f1cbee55f09e455b1d7.tar.gz |
util: fetch message headers for nil messages
Fix large archive operations that covers messages in the store with
unfetched headers. Commit e5ad877af562 ("msgstore: fetch missing headers
in visual mode") fixed this for the visual selection mode but omitted
the case when 'mark -a' is used to mark all messages.
Signed-off-by: Koni Marti <koni.marti@gmail.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'lib/marker/marker.go')
-rw-r--r-- | lib/marker/marker.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/marker/marker.go b/lib/marker/marker.go index 1b89fc80..46400f1a 100644 --- a/lib/marker/marker.go +++ b/lib/marker/marker.go @@ -1,7 +1,5 @@ package marker -// TODO: fix headers for message that are nil - // Marker provides the interface for the marking behavior of messages type Marker interface { Mark(uint32) |