[mastodon-client] Fail gracefully if user resolve fails

This commit is contained in:
Laura Hausmann 2023-07-07 18:58:24 +02:00
parent 9d9e069588
commit 5e6594d91d
No known key found for this signature in database
GPG Key ID: D044E84C5BE01605

View File

@ -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;
}