diff options
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/account.go b/widgets/account.go index 313a364..211f09d 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -273,8 +273,7 @@ func (acct *AccountView) onMessage(msg types.WorkerMessage) { acct.labels = msg.Labels case *types.Error: acct.logger.Printf("%v", msg.Error) - acct.host.SetStatus(fmt.Sprintf("%v", msg.Error)). - Color(tcell.ColorDefault, tcell.ColorRed) + acct.aerc.PushError(fmt.Sprintf("%v", msg.Error)) } } |