1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-13 15:15:45 +02:00
This commit is contained in:
tamaina
2023-07-19 07:05:02 +00:00
parent a2f6bf3d5c
commit ee1e2aa200

View File

@@ -361,6 +361,11 @@ export class ApPersonService implements OnModuleInit {
}
});
this.usersChart.update(user, true);
// ハッシュタグ更新
this.hashtagService.updateUsertags(user, tags);
//#region アバターとヘッダー画像をフェッチ
try {
const updates = await this.resolveAvatarAndBanner(user, person.icon, person.image);
@@ -374,11 +379,6 @@ export class ApPersonService implements OnModuleInit {
}
//#endregion
this.usersChart.update(user, true);
// ハッシュタグ更新
this.hashtagService.updateUsertags(user, tags);
await this.updateFeatured(user.id, resolver).catch(err => this.logger.error(err));
return user;