From 4cf784d6395aae3df3e626cb5abf4d1af75cfd36 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 9 May 2024 23:11:34 +0300 Subject: [PATCH] Remove unintentional intentional mentions in replies Signed-off-by: Tulir Asokan --- content/client-server-api/modules/rich_replies.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/content/client-server-api/modules/rich_replies.md b/content/client-server-api/modules/rich_replies.md index ef07b697..c0a75e92 100644 --- a/content/client-server-api/modules/rich_replies.md +++ b/content/client-server-api/modules/rich_replies.md @@ -182,10 +182,10 @@ text should be `"sent a video."`. For `m.audio`, the text should be #### Mentioning the replied to user In order to notify users of the reply, it may be desirable to include the `sender` -of the replied to event and any users mentioned in that event. See -[user and room mentions](#user-and-room-mentions) for additional information. +of the replied to event. See [user and room mentions](#user-and-room-mentions) +for additional information. -An example including mentioning the original sender and other users: +An example including mentioning the original sender: ```json5 { @@ -200,8 +200,6 @@ An example including mentioning the original sender and other users: "user_ids": [ // The sender of $another_event. "@alice:example.org", - // Another Matrix ID copied from the m.mentions property of $another_event. - "@bob:example.org" ] } },