Forward Modal: Show non-contacts users (#5620)
This commit is contained in:
parent
76190b9f83
commit
9f7e4c9e58
@ -73,7 +73,7 @@ const RecipientPicker: FC<OwnProps & StateProps> = ({
|
|||||||
].filter((id) => {
|
].filter((id) => {
|
||||||
const chat = selectChat(global, id);
|
const chat = selectChat(global, id);
|
||||||
const user = selectUser(global, id);
|
const user = selectUser(global, id);
|
||||||
if (user && isDeletedUser(user)) return false;
|
if (user && !isDeletedUser(user)) return true;
|
||||||
|
|
||||||
const chatFullInfo = selectChatFullInfo(global, id);
|
const chatFullInfo = selectChatFullInfo(global, id);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user