Check for nil before calling mu4e-user-mail-address-p

This commit is contained in:
Yuri D'Elia 2020-10-19 15:35:08 +02:00
parent e2f57e328a
commit 2967c49f5a
1 changed files with 1 additions and 1 deletions

View File

@ -608,7 +608,7 @@ cdr element the To: prefix.")
otherwise ; show the from address; prefixed with the appropriate
`mu4e-headers-from-or-to-prefix'."
(let ((addr (cdr-safe (car-safe (mu4e-message-field msg :from)))))
(if (mu4e-user-mail-address-p addr)
(if (and addr (mu4e-user-mail-address-p addr))
(concat (cdr mu4e-headers-from-or-to-prefix)
(mu4e~headers-contact-str (mu4e-message-field msg :to)))
(concat (car mu4e-headers-from-or-to-prefix)