Forward Modal: Show non-contacts users (#5620)

This commit is contained in:
Alexander Zinchuk 2025-02-13 14:28:17 +01:00
parent 76190b9f83
commit 9f7e4c9e58

View File

@ -73,7 +73,7 @@ const RecipientPicker: FC<OwnProps & StateProps> = ({
].filter((id) => {
const chat = selectChat(global, id);
const user = selectUser(global, id);
if (user && isDeletedUser(user)) return false;
if (user && !isDeletedUser(user)) return true;
const chatFullInfo = selectChatFullInfo(global, id);