fmt + changelog

This commit is contained in:
Sebastian Klähn
2022-12-27 17:41:21 +01:00
parent c8fe830c33
commit d0871d3bd7
2 changed files with 2 additions and 4 deletions

View File

@@ -14,7 +14,7 @@
### Fixes ### Fixes
- Do not add an error if the message is encrypted but not signed #3860 - Do not add an error if the message is encrypted but not signed #3860
- Do not strip leading spaces from message lines #3867 - Do not strip leading spaces from message lines #3867
- Don't always rebuild group member lists #3872
## 1.104.0 ## 1.104.0

View File

@@ -1603,9 +1603,7 @@ async fn apply_group_changes(
let mut recreate_member_list = match mime_parser.get_header(HeaderDef::InReplyTo) { let mut recreate_member_list = match mime_parser.get_header(HeaderDef::InReplyTo) {
Some(reply_to) if rfc724_mid_exists(context, reply_to).await?.is_none() => true, Some(reply_to) if rfc724_mid_exists(context, reply_to).await?.is_none() => true,
Some(_) => { Some(_) => !is_contact_in_chat(context, chat_id, ContactId::SELF).await?,
!is_contact_in_chat(context, chat_id, ContactId::SELF).await?
}
None => true, None => true,
}; };