remove dead code

This commit is contained in:
dignifiedquire
2019-11-30 03:15:02 +01:00
parent deddb8fde4
commit bb605e28aa
8 changed files with 19 additions and 194 deletions

View File

@@ -478,7 +478,7 @@ impl<'a> MimeParser<'a> {
/* eg. `report-type=delivery-status`;
maybe we should show them as a little error icon */
if let Some(first) = mail.subparts.iter().next() {
any_part_added = self.parse_mime_recursive(mail)?;
any_part_added = self.parse_mime_recursive(first)?;
}
}
}