summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/NoteCreateService.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-10-07 07:53:14 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-10-07 07:53:14 +0900
commit4a595153dc3a82206c5ee1c05a12deab663ba544 (patch)
tree3316b942b3a0e3694cc71ce5bee8870709ffaf00 /packages/backend/src/core/NoteCreateService.ts
parent2023.10.0-beta.5 (diff)
downloadsharkey-4a595153dc3a82206c5ee1c05a12deab663ba544.tar.gz
sharkey-4a595153dc3a82206c5ee1c05a12deab663ba544.tar.bz2
sharkey-4a595153dc3a82206c5ee1c05a12deab663ba544.zip
enhance(backend): 返信はハイライトに載らないように
Diffstat (limited to 'packages/backend/src/core/NoteCreateService.ts')
-rw-r--r--packages/backend/src/core/NoteCreateService.ts12
1 files changed, 8 insertions, 4 deletions
diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts
index b6fc4b3c49..5e86443945 100644
--- a/packages/backend/src/core/NoteCreateService.ts
+++ b/packages/backend/src/core/NoteCreateService.ts
@@ -729,10 +729,14 @@ export class NoteCreateService implements OnApplicationShutdown {
// 30%の確率でハイライト用ランキング更新
if (Math.random() < 0.3) {
if (renote.channelId != null) {
- this.featuredService.updateInChannelNotesRanking(renote.channelId, renote.id, 5);
- } else if (renote.visibility === 'public' && renote.userHost == null) {
- this.featuredService.updateGlobalNotesRanking(renote.id, 5);
- this.featuredService.updatePerUserNotesRanking(renote.userId, renote.id, 5);
+ if (renote.replyId == null) {
+ this.featuredService.updateInChannelNotesRanking(renote.channelId, renote.id, 5);
+ }
+ } else {
+ if (renote.visibility === 'public' && renote.userHost == null && renote.replyId == null) {
+ this.featuredService.updateGlobalNotesRanking(renote.id, 5);
+ this.featuredService.updatePerUserNotesRanking(renote.userId, renote.id, 5);
+ }
}
}
}