From 9407a71081cc6926316df0cd630240d76b82cfc6 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Wed, 23 Aug 2023 17:05:27 +1200 Subject: [PATCH] buildmimetree.py: allow multipart/related instead of relative --- .config/neomutt/buildmimetree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/neomutt/buildmimetree.py b/.config/neomutt/buildmimetree.py index a0112c8..a570a3b 100755 --- a/.config/neomutt/buildmimetree.py +++ b/.config/neomutt/buildmimetree.py @@ -495,7 +495,7 @@ def do_massage( # appropriate grouping: if item.subtype == "alternative": cmds.push("") - elif item.subtype == "relative": + elif item.subtype in ("relative", "related"): cmds.push("") elif item.subtype == "multilingual": cmds.push("") -- 2.39.2