forked from FoundKeyGang/FoundKey
💯
This commit is contained in:
parent
4d0c303660
commit
edf2503ee5
1 changed files with 13 additions and 11 deletions
|
@ -495,18 +495,20 @@ function incNotesCount(user: IUser) {
|
|||
async function extractMentionedUsers(tokens: ReturnType<typeof parse>): Promise<IUser[]> {
|
||||
if (tokens == null) return [];
|
||||
|
||||
// TODO: Drop dupulicates
|
||||
const mentionTokens = tokens
|
||||
.filter(t => t.type == 'mention') as TextElementMention[];
|
||||
const mentionTokens = [...new Set(
|
||||
tokens
|
||||
.filter(t => t.type == 'mention') as TextElementMention[]
|
||||
)];
|
||||
|
||||
// TODO: Drop dupulicates
|
||||
const mentionedUsers = (await Promise.all(mentionTokens.map(async m => {
|
||||
try {
|
||||
return await resolveUser(m.username, m.host);
|
||||
} catch (e) {
|
||||
return null;
|
||||
}
|
||||
}))).filter(x => x != null);
|
||||
const mentionedUsers = [...new Set(
|
||||
(await Promise.all(mentionTokens.map(async m => {
|
||||
try {
|
||||
return await resolveUser(m.username, m.host);
|
||||
} catch (e) {
|
||||
return null;
|
||||
}
|
||||
}))).filter(x => x != null)
|
||||
)];
|
||||
|
||||
return mentionedUsers;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue