fix: fix debug assert message incorrectly talking about past members in the current member branch

This commit is contained in:
link2xt
2026-02-26 04:12:10 +00:00
committed by l
parent bdca3e5c09
commit a23e41ea6d

View File

@@ -367,7 +367,7 @@ impl MimeFactory {
} else if id == ContactId::SELF {
member_fingerprints.push(self_fingerprint.to_string());
} else {
ensure_and_debug_assert!(member_fingerprints.is_empty(), "If some past member is a key-contact, all other past members should be key-contacts too");
ensure_and_debug_assert!(member_fingerprints.is_empty(), "If some member is a key-contact, all other members should be key-contacts too");
}
}
member_timestamps.push(add_timestamp);