[mastodon-client] Fail gracefully if user resolve fails
This commit is contained in:
parent
9d9e069588
commit
5e6594d91d
@ -1257,17 +1257,15 @@ export default class Misskey implements MegalodonInterface {
|
||||
}
|
||||
|
||||
public async getMentions(text: string, cache: AccountCache): Promise<Entity.Mention[]> {
|
||||
console.log(`getting mentions for message: '${text}'`);
|
||||
const mentions :Entity.Mention[] = [];
|
||||
|
||||
if (text == undefined)
|
||||
return mentions;
|
||||
|
||||
console.log('text is not undefined, continuing');
|
||||
|
||||
const mentionMatch = text.matchAll(/(?<=^|\s)@(?<user>.*?)(?:@(?<host>.*?)|)(?=\s|$)/g);
|
||||
|
||||
for (const m of mentionMatch) {
|
||||
try {
|
||||
if (m.groups == null)
|
||||
continue;
|
||||
|
||||
@ -1283,6 +1281,8 @@ export default class Misskey implements MegalodonInterface {
|
||||
acct: account.acct
|
||||
});
|
||||
}
|
||||
catch {}
|
||||
}
|
||||
|
||||
return mentions;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user