Merge pull request #2296 from khoa-le/PLT-2123
PLT-2123 Do not show up inactive account in Suggestion Box of Channel
Этот коммит содержится в:
@@ -89,7 +89,7 @@ export default class AtMentionProvider {
|
|||||||
for (const id of Object.keys(users)) {
|
for (const id of Object.keys(users)) {
|
||||||
const user = users[id];
|
const user = users[id];
|
||||||
|
|
||||||
if (user.username.startsWith(usernamePrefix)) {
|
if (user.username.startsWith(usernamePrefix) && user.delete_at <= 0) {
|
||||||
filtered.push(user);
|
filtered.push(user);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user