diff --git a/CHANGELOG.md b/CHANGELOG.md index 866cf1ab0222..6cab536dcf8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## Unreleased +### General + +### Client + +### Server +- Fix: public to homeモデレーションが withReplies に適用されてない問題を修正 + ## 2024.10.0-kinel.1 ## 2024.10.0 (merged to 2024.10.0-kinel.1) diff --git a/packages/backend/src/server/api/endpoints/admin/note-public-to-home.ts b/packages/backend/src/server/api/endpoints/admin/note-public-to-home.ts index 1089b6616b35..b6d4b7087e1a 100644 --- a/packages/backend/src/server/api/endpoints/admin/note-public-to-home.ts +++ b/packages/backend/src/server/api/endpoints/admin/note-public-to-home.ts @@ -120,10 +120,10 @@ export default class extends Endpoint { // eslint- this.fanoutTimelineService.remove('localTimeline', note.id, redisPipeline); this.fanoutTimelineService.remove('vmimiRelayTimeline', note.id, redisPipeline); if (note.replyId) { - this.fanoutTimelineService.remove('localTimelineWithReplies', note.replyId, redisPipeline); - this.fanoutTimelineService.remove(`localTimelineWithReplyTo:${note.replyUserId}`, note.replyId, redisPipeline); - this.fanoutTimelineService.remove('vmimiRelayTimelineWithReplies', note.replyId, redisPipeline); - //this.fanoutTimelineService.remove(`vmimiRelayTimelineWithReplyTo:${note.replyUserId}`, note.replyId, redisPipeline); + this.fanoutTimelineService.remove('localTimelineWithReplies', note.id, redisPipeline); + this.fanoutTimelineService.remove(`localTimelineWithReplyTo:${note.replyUserId}`, note.id, redisPipeline); + this.fanoutTimelineService.remove('vmimiRelayTimelineWithReplies', note.id, redisPipeline); + //this.fanoutTimelineService.remove(`vmimiRelayTimelineWithReplyTo:${note.replyUserId}`, note.id, redisPipeline); } if (note.fileIds.length > 0) { this.fanoutTimelineService.remove('localTimelineWithFiles', note.id, redisPipeline);