diff options
author | Reto Brunner <reto@labrat.space> | 2020-05-27 07:52:13 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-05-27 08:11:40 +0200 |
commit | f06d683688e3d2139b14f67b7e349089e7200bf4 (patch) | |
tree | eee331112cbcfeafdb8cd6ba126d9e51ed72b10a /commands/msg/read.go | |
parent | 0f78f06610c0e8887aba2ae50e99b86477a384b3 (diff) | |
download | aerc-f06d683688e3d2139b14f67b7e349089e7200bf4.tar.gz |
Remove duration from the status methods
We always set 10 seconds anyhow, might as well do that without repeating ourselfs.
Diffstat (limited to 'commands/msg/read.go')
-rw-r--r-- | commands/msg/read.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/commands/msg/read.go b/commands/msg/read.go index e27f7433..a08b8074 100644 --- a/commands/msg/read.go +++ b/commands/msg/read.go @@ -3,7 +3,6 @@ package msg import ( "errors" "sync" - "time" "git.sr.ht/~sircmpwn/getopt" @@ -91,9 +90,9 @@ func submitReadChange(aerc *widgets.Aerc, store *lib.MessageStore, store.Read(uids, newState, func(msg types.WorkerMessage) { switch msg := msg.(type) { case *types.Done: - aerc.PushStatus(msg_success, 10*time.Second) + aerc.PushStatus(msg_success) case *types.Error: - aerc.PushError(" "+msg.Error.Error(), 10*time.Second) + aerc.PushError(" " + msg.Error.Error()) } }) } @@ -106,7 +105,7 @@ func submitReadChangeWg(aerc *widgets.Aerc, store *lib.MessageStore, case *types.Done: wg.Done() case *types.Error: - aerc.PushError(" "+msg.Error.Error(), 10*time.Second) + aerc.PushError(" " + msg.Error.Error()) *success = false wg.Done() } @@ -136,7 +135,7 @@ func submitToggle(aerc *widgets.Aerc, store *lib.MessageStore, h *helper) error go func() { wg.Wait() if success { - aerc.PushStatus(msg_success, 10*time.Second) + aerc.PushStatus(msg_success) } }() return nil |