diff options
author | Ray Ganardi <ray@ganardi.xyz> | 2020-05-19 13:06:46 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-05-25 09:30:20 -0400 |
commit | 58db517c8d79c7fd8897d8ab5d5cf9c2de67a071 (patch) | |
tree | 775b2d74bda2ea10795b9dffa60afb66c36a90b8 /commands/account | |
parent | 83e7c7661dfe42e75641d764d713d144c2d7c6ce (diff) | |
download | aerc-58db517c8d79c7fd8897d8ab5d5cf9c2de67a071.tar.gz |
pgp: fail gracefully from email decryption
Aerc panics when there's an error on email decryption. Instead, an error message should be shown.
Diffstat (limited to 'commands/account')
-rw-r--r-- | commands/account/view.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/account/view.go b/commands/account/view.go index d1b90ce..b421666 100644 --- a/commands/account/view.go +++ b/commands/account/view.go @@ -39,7 +39,11 @@ func (ViewMessage) Execute(aerc *widgets.Aerc, args []string) error { return nil } lib.NewMessageStoreView(msg, store, aerc.DecryptKeys, - func(view lib.MessageView) { + func(view lib.MessageView, err error) { + if err != nil { + aerc.PushError(err.Error()) + return + } viewer := widgets.NewMessageViewer(acct, aerc.Config(), view) aerc.NewTab(viewer, msg.Envelope.Subject) }) |