fix: chat-description-changed text in old clients (#7870)

instead of Alice saying to Bob "You changed the chat description",
we now say "[Chat description changed, please update ...]

i was also considering to say "[Chat description changed to:\n\n...]"
but then there is no incentive for ppl to update, and chat descriptions
for chat creation would still be missing. and this is probably far more
often used.

successor of https://github.com/chatmail/core/pull/7829
This commit is contained in:
biörn
2026-02-21 22:07:41 +01:00
committed by GitHub
parent f055f6226c
commit b531a3c012
2 changed files with 4 additions and 2 deletions

View File

@@ -3231,7 +3231,7 @@ async fn test_chat_description(initial_description: &str, join_via_qr: bool) ->
let sent = alice.pop_sent_msg().await;
assert_eq!(
sent.load_from_db().await.text,
"You changed the chat description."
"[Chat description changed. To see this and other new features, please update the app]"
);
tcm.section("Bob receives the description change");