nnatom: Fix parsing of empty articles

* lisp/gnus/nnatom.el (nnatom--read-parts): Fix typo (bug#77539).
This commit is contained in:
Daniel Semyonov 2025-04-05 01:29:44 +03:00 committed by Eli Zaretskii
parent 41ffeaec15
commit 242ee957f9

View file

@ -270,7 +270,7 @@ return the subject. Otherwise, return nil."
(or st (push summary parts)))
((setq content (or summary content))
(push (append content '(links)) parts))
(t (push '((nil (Content-Type . "text/html") links)) parts)))
(t (push '(nil (Content-Type . "text/html") links) parts)))
parts))
(defvoo nnatom-read-parts-function #'nnatom--read-parts
nil nnfeed-read-parts-function)