From f9751cedbd710acd04bad2cd03f758f50aabd401 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 1 May 2026 19:05:45 +0300 Subject: [PATCH] mu4e-view: silence unsupported mime-part errors Silence any error when we cannot get the filename for a handle. Not the most elegant, but works around it... might help for #2923. --- mu4e/mu4e-view.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 5c79e79e..cd946442 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -759,7 +759,7 @@ filename." (dolist (p positions) (when-let* ((handle (get-text-property p 'gnus-data)) ((listp handle)) - (name (mm-handle-filename handle)) + (name (ignore-errors (mm-handle-filename handle))) (icon (mu4e-file-name-to-icon name))) (goto-char p) (insert icon " "))))))