enhance(backend): ハッシュタグのランキングをローカルユーザーに限定する (MisskeyIO#570)

This commit is contained in:
まっちゃとーにゅ
2024-03-27 07:25:56 +09:00
committed by GitHub
parent 9bd82d07b2
commit a89d6b912c

View File

@@ -56,8 +56,10 @@ export class HashtagService {
public async updateHashtag(user: { id: MiUser['id']; host: MiUser['host']; }, tag: string, isUserAttached = false, inc = true) {
tag = normalizeForSearch(tag);
// TODO: サンプリング
this.updateHashtagsRanking(tag, user.id);
if (this.userEntityService.isLocalUser(user)) {
// TODO: サンプリング
this.updateHashtagsRanking(tag, user.id);
}
const index = await this.hashtagsRepository.findOneBy({ name: tag });