[mastodon-client] populate details for quote and reblog fields

This commit is contained in:
Laura Hausmann 2023-07-07 23:18:43 +02:00
parent f33ccfc98a
commit 8323a33f97
Signed by: zotan
GPG key ID: D044E84C5BE01605

View file

@ -1260,6 +1260,12 @@ export default class Misskey implements MegalodonInterface {
if (status.account.followers_count === 0 && status.account.followers_count === 0 && status.account.statuses_count === 0)
status.account = await this.getAccountCached(status.account.id, status.account.acct, cache) ?? status.account;
if (status.reblog != null)
status.reblog = await this.addUserDetailsToStatus(status.reblog, cache);
if (status.quote != null)
status.quote = await this.addUserDetailsToStatus(status.quote, cache);
return status;
}
@ -1267,6 +1273,12 @@ export default class Misskey implements MegalodonInterface {
if (status.mentions.length > 0)
return status;
if (status.reblog != null)
status.reblog = await this.addMentionsToStatus(status.reblog, cache);
if (status.quote != null)
status.quote = await this.addMentionsToStatus(status.quote, cache);
status.mentions = (await this.getMentions(status.plain_content!, cache)).filter(p => p != null);
for (const m of status.mentions.filter((value, index, array) => array.indexOf(value) === index)) {
status.content = status.content.replace(`@${m.acct}`, `<a href="${m.url}" class="u-url mention" rel="nofollow noopener noreferrer" target="_blank">@${m.acct}</a>`);