mu4e: don't try to open non-existent messages
When processing header updates, don't try to open a message that doesn't exist. Fixes issue #825.
This commit is contained in:
@ -598,8 +598,9 @@ after the end of the search results."
|
||||
(goto-char (point-min))
|
||||
(when mu4e~headers-msgid-target
|
||||
(mu4e-headers-goto-message-id mu4e~headers-msgid-target))
|
||||
(when mu4e~headers-view-target
|
||||
(mu4e-headers-view-message)) ;; view the message at point
|
||||
(when (and mu4e~headers-view-target (mu4e-message-at-point 'noerror))
|
||||
;; view the message at point when there is one.
|
||||
(mu4e-headers-view-message))
|
||||
(setq mu4e~headers-view-target nil
|
||||
mu4e~headers-msgid-target nil))
|
||||
(when (mu4e~headers-docid-at-point)
|
||||
|
||||
Reference in New Issue
Block a user