compose: Simplify convert_mentions_to_silent_in_direct_messages.

The behavior to replace existing message content was leftover code
from a previous version of the mechanism, and not intended.
This commit is contained in:
Tim Abbott 2024-01-19 11:09:23 -08:00
parent 60afdc45eb
commit 85ee5255bc
1 changed files with 2 additions and 7 deletions

View File

@ -851,11 +851,6 @@ export function convert_mentions_to_silent_in_direct_messages(mention_text, full
return mention_text;
}
const mention_str = people.get_mention_syntax(full_name, user_id, false);
const silent_mention_str = people.get_mention_syntax(full_name, user_id, true);
mention_text = mention_text.replace(mention_str, silent_mention_str);
// also replace other mentions...
compose_ui.replace_syntax(mention_str, silent_mention_str);
return mention_text;
const silent_mention_text = people.get_mention_syntax(full_name, user_id, true);
return silent_mention_text;
}