Merge pull request #1937 from thierryvolpiatto/Fix_mu4e-view-gnus-save-mime-parts

Fix error in mu4e-view-gnus-save-mime-parts
This commit is contained in:
Dirk-Jan C. Binnema 2021-03-03 12:07:32 +02:00 committed by GitHub
commit ded1de96e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1435,7 +1435,7 @@ attachments is done with `completing-read-multiple', in this case use
(goto-char (point-min))
(while (not (eobp))
(let ((handle (get-text-property (point) 'gnus-data)))
(when handle
(when (consp handle)
(let ((fname (cdr (assoc 'filename (assoc "attachment" (cdr handle))))))
(when fname
(push `(,fname . ,handle) handles)