mimefactory: remove unused "increation" field

This commit is contained in:
Alexander Krotov
2020-01-16 23:37:53 +03:00
parent 578e4b2785
commit 213c5df706

View File

@@ -37,7 +37,6 @@ pub struct MimeFactory<'a, 'b> {
timestamp: i64, timestamp: i64,
loaded: Loaded, loaded: Loaded,
msg: &'b Message, msg: &'b Message,
increation: bool,
in_reply_to: String, in_reply_to: String,
references: String, references: String,
req_mdn: bool, req_mdn: bool,
@@ -152,7 +151,6 @@ impl<'a, 'b> MimeFactory<'a, 'b> {
timestamp: msg.timestamp_sort, timestamp: msg.timestamp_sort,
loaded: Loaded::Message { chat }, loaded: Loaded::Message { chat },
msg, msg,
increation: msg.is_increation(),
in_reply_to, in_reply_to,
references, references,
req_mdn, req_mdn,
@@ -194,7 +192,6 @@ impl<'a, 'b> MimeFactory<'a, 'b> {
timestamp: dc_create_smeared_timestamp(context), timestamp: dc_create_smeared_timestamp(context),
loaded: Loaded::MDN, loaded: Loaded::MDN,
msg, msg,
increation: false,
in_reply_to: String::default(), in_reply_to: String::default(),
references: String::default(), references: String::default(),
req_mdn: false, req_mdn: false,