message_events: Remove non matching edited msgs from search result.

This commit is contained in:
Aman Agrawal 2024-11-09 17:48:35 +05:30 committed by Tim Abbott
parent 99a79ed8f4
commit feb6ba6c52
1 changed files with 3 additions and 0 deletions

View File

@ -80,6 +80,9 @@ export function maybe_add_narrowed_messages(
return new_msg;
});
// Remove the elsewhere_messages from the message list since
// they don't match the filter as per data from server.
msg_list.remove_and_rerender(elsewhere_messages.map((msg) => msg.id));
callback(new_messages, msg_list);
unread_ops.process_visible();
compose_notifications.notify_messages_outside_current_search(elsewhere_messages);