Compare commits

...

1 Commits

Author SHA1 Message Date
holger krekel
2d912a71d7 avoids double-semicolon problem leading to empty messages in pre-master releases 2019-12-03 15:44:15 +01:00

View File

@@ -516,7 +516,7 @@ impl<'a, 'b> MimeFactory<'a, 'b> {
// Set the appropriate Content-Type for the outer message
let mut outer_message = PartBuilder::new().header((
"Content-Type".to_string(),
"multipart/encrypted; protocol=\"application/pgp-encrypted\";".to_string(),
"multipart/encrypted; protocol=\"application/pgp-encrypted\"".to_string(),
));
// Store the unprotected headers on the outer message.