diff options
author | Art Wild <wildart@gmail.com> | 2019-08-06 00:02:21 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-08-08 10:12:17 +0900 |
commit | d4416e74ac64e10249ad085f0bcd12887b077bf2 (patch) | |
tree | 34edffb7f6804baa249a9478b2b3af24b427c753 /commands/msg | |
parent | 00167752785a50158e9aebbe72ad3f05f49e347e (diff) | |
download | aerc-d4416e74ac64e10249ad085f0bcd12887b077bf2.tar.gz |
Fix `unread` command
This fixes ~sircmpwn/aerc2#195. While `read -t` works fine. The `unread` command is not wired. This patch fixes it. https://todo.sr.ht/~sircmpwn/aerc2/195
Diffstat (limited to 'commands/msg')
-rw-r--r-- | commands/msg/read.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/msg/read.go b/commands/msg/read.go index 8999627..3497ef1 100644 --- a/commands/msg/read.go +++ b/commands/msg/read.go @@ -63,6 +63,8 @@ func (_ Read) Execute(aerc *widgets.Aerc, args []string) error { } } else if args[0] == "read" { newReadState = true + } else if args[0] == "unread" { + newReadState = false } store.Read([]uint32{msg.Uid}, newReadState, func( msg types.WorkerMessage) { |