aboutsummaryrefslogtreecommitdiffstats
path: root/commands/msg/archive.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/msg/archive.go')
-rw-r--r--commands/msg/archive.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/commands/msg/archive.go b/commands/msg/archive.go
index d4ad8f91..b8d8ff6d 100644
--- a/commands/msg/archive.go
+++ b/commands/msg/archive.go
@@ -86,7 +86,8 @@ func (Archive) Execute(aerc *widgets.Aerc, args []string) error {
for dir, uids := range uidMap {
store.Move(uids, dir, true, func(
- msg types.WorkerMessage) {
+ msg types.WorkerMessage,
+ ) {
switch msg := msg.(type) {
case *types.Done:
wg.Done()
@@ -111,7 +112,8 @@ func (Archive) Execute(aerc *widgets.Aerc, args []string) error {
}
func groupBy(msgs []*models.MessageInfo,
- grouper func(*models.MessageInfo) string) map[string][]uint32 {
+ grouper func(*models.MessageInfo) string,
+) map[string][]uint32 {
m := make(map[string][]uint32)
for _, msg := range msgs {
group := grouper(msg)