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/compose/postpone.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/compose/postpone.go')
-rw-r--r-- | commands/compose/postpone.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/compose/postpone.go b/commands/compose/postpone.go index 90b6134b..4427ff66 100644 --- a/commands/compose/postpone.go +++ b/commands/compose/postpone.go @@ -63,7 +63,7 @@ func (Postpone) Execute(aerc *widgets.Aerc, args []string) error { go func() { errStr := <-errChan if errStr != "" { - aerc.PushError(" "+errStr, 10*time.Second) + aerc.PushError(" " + errStr) return } @@ -71,7 +71,7 @@ func (Postpone) Execute(aerc *widgets.Aerc, args []string) error { ctr := datacounter.NewWriterCounter(ioutil.Discard) err = composer.WriteMessage(header, ctr) if err != nil { - aerc.PushError(errors.Wrap(err, "WriteMessage").Error(), 10*time.Second) + aerc.PushError(errors.Wrap(err, "WriteMessage").Error()) composer.Close() return } @@ -86,11 +86,11 @@ func (Postpone) Execute(aerc *widgets.Aerc, args []string) error { }, func(msg types.WorkerMessage) { switch msg := msg.(type) { case *types.Done: - aerc.PushStatus("Message postponed.", 10*time.Second) + aerc.PushStatus("Message postponed.") r.Close() composer.Close() case *types.Error: - aerc.PushError(" "+msg.Error.Error(), 10*time.Second) + aerc.PushError(" " + msg.Error.Error()) r.Close() composer.Close() } |