diff options
Diffstat (limited to 'commands/msg/recall.go')
-rw-r--r-- | commands/msg/recall.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/commands/msg/recall.go b/commands/msg/recall.go index f0bafc73..8434b8d8 100644 --- a/commands/msg/recall.go +++ b/commands/msg/recall.go @@ -182,7 +182,10 @@ func (Recall) Execute(aerc *widgets.Aerc, args []string) error { composer.SetEncrypt(md.IsEncrypted) } if md.IsSigned { - composer.SetSign(md.IsSigned) + err = composer.SetSign(md.IsSigned) + if err != nil { + logging.Warnf("failed to set signed state: %v", err) + } } } addTab() |