mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-22 21:07:36 +00:00
Fix reversed check in mm-possibly-verify-or-decrypt
* lisp/gnus/mm-decode.el (mm-possibly-verify-or-decrypt): Fix reverse check thinko that made unverified singed messages not display correctly.
This commit is contained in:
parent
6c8f4c4bdd
commit
0087ec959d
1 changed files with 1 additions and 1 deletions
|
|
@ -1745,7 +1745,7 @@ If RECURSIVE, search recursively."
|
|||
(let ((info (get-text-property 0 'gnus-info (car mm-security-handle))))
|
||||
(if (or (not info)
|
||||
(equal info "")
|
||||
(equal subtype "encrypted")
|
||||
(not (equal subtype "encrypted"))
|
||||
(member "OK" (split-string info "\n")))
|
||||
parts
|
||||
;; We had an error during decryption. Report what it is.
|
||||
|
|
|
|||
Loading…
Reference in a new issue