Skip to content

Commit ff08b9e

Browse files
committed
fix: use protected Date with protected Autocrypt
1 parent 9bca0b3 commit ff08b9e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/mimeparser.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,13 @@ impl MimeMessage {
345345
}
346346

347347
decrypted_msg = Some(msg);
348+
349+
timestamp_sent = Self::get_timestamp_sent(
350+
&decrypted_mail.headers,
351+
timestamp_sent,
352+
timestamp_rcvd,
353+
);
354+
348355
if let Some(protected_aheader_value) = decrypted_mail
349356
.headers
350357
.get_header_value(HeaderDef::Autocrypt)
@@ -416,8 +423,6 @@ impl MimeMessage {
416423
content
417424
});
418425
if let (Ok(mail), true) = (mail, encrypted) {
419-
timestamp_sent =
420-
Self::get_timestamp_sent(&mail.headers, timestamp_sent, timestamp_rcvd);
421426
if !signatures.is_empty() {
422427
// Remove unsigned opportunistically protected headers from messages considered
423428
// Autocrypt-encrypted / displayed with padlock.

0 commit comments

Comments
 (0)