mirror of
https://github.com/danog/telegram-tt.git
synced 2024-11-30 04:39:00 +01:00
New Chat: Fix missing users
This commit is contained in:
parent
0b40f27ed9
commit
341dda37eb
@ -86,7 +86,7 @@ const NewChatStep1: FC<OwnProps & StateProps> = ({
|
||||
return true;
|
||||
}
|
||||
|
||||
return user.canBeInvitedToGroup && !user.isSelf && !isUserBot(user);
|
||||
return !user.isSelf && (user.canBeInvitedToGroup || !isUserBot(user));
|
||||
}),
|
||||
chatsById,
|
||||
false,
|
||||
|
Loading…
Reference in New Issue
Block a user