aboutsummaryrefslogtreecommitdiffstats
path: root/app/compose.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/compose.go')
-rw-r--r--app/compose.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/compose.go b/app/compose.go
index 22d862aa..9f9ebf39 100644
--- a/app/compose.go
+++ b/app/compose.go
@@ -1787,7 +1787,10 @@ func (c *Composer) updateMultipart(p *lib.Part) error {
p.ConversionError = e
return e
}
-
+ if !p.Converted {
+ // text/* multipart created without a command (e.g. by :accept)
+ return nil
+ }
command, found := config.Converters[p.MimeType]
if !found {
// unreachable