@link2xt's review

This commit is contained in:
Hocuri
2020-10-15 16:09:02 +02:00
committed by holger krekel
parent 0b1288fc17
commit 26aeacc6be
2 changed files with 31 additions and 32 deletions

View File

@@ -1071,7 +1071,9 @@ impl MimeMessage {
.iter()
.find(|p| p.typ == Viewtype::Text)
.map(|p| p.msg.clone());
message::handle_ndn(context, failure_report, error).await
if let Err(e) = message::handle_ndn(context, failure_report, error).await {
warn!(context, "Could not handle ndn: {}", e);
}
}
}