diff options
author | Ben Fiedler <git@services.bfiedler.ch> | 2020-04-23 03:56:28 +0200 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2020-04-23 21:02:45 +0200 |
commit | 7c89143c709e58f22a4939886ccb15bd639eec17 (patch) | |
tree | 4714984f29b0f42014436401665d9430ec288d31 /commands/compose | |
parent | 280d8e7e1cce40f11c6d5f368f9060486556f96b (diff) | |
download | aerc-7c89143c709e58f22a4939886ccb15bd639eec17.tar.gz |
Use aerc.PushError where appropriate
Forgot an unused import, to save you the hassle here is v2.
Diffstat (limited to 'commands/compose')
-rw-r--r-- | commands/compose/send.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/compose/send.go b/commands/compose/send.go index c8f7cc58..f726a602 100644 --- a/commands/compose/send.go +++ b/commands/compose/send.go @@ -246,8 +246,7 @@ func (Send) Execute(aerc *widgets.Aerc, args []string) error { r.Close() composer.Close() case *types.Error: - aerc.PushStatus(" "+msg.Error.Error(), 10*time.Second). - Color(tcell.ColorDefault, tcell.ColorRed) + aerc.PushError(" "+msg.Error.Error()) r.Close() composer.Close() } |