* mumi/messages.scm (extract-attachment): Remove call to
split-multipart-message and use the email body directly.
(lambda (bug)
(and=> (nth msg-num (patch-messages id))
(lambda (msg)
- (and=> (multipart-message? msg)
- (lambda (attributes)
- (match (split-multipart-message attributes msg)
- (() #f)
- (parts (traverse path parts))))))))))
+ (and (multipart-message? msg)
+ (traverse path (email-body msg))))))))
\f
(define-public (patch-messages id)