From 585253262c79de438088d246e944783201c11a37 Mon Sep 17 00:00:00 2001 From: anatawa12 Date: Tue, 29 Oct 2024 09:29:27 +0900 Subject: [PATCH 1/2] fix: public to home not applied to withreplies timelines --- .../src/server/api/endpoints/admin/note-public-to-home.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); From 9188f17a73e9a6f80bd07f07cdbb9dc0a58784be Mon Sep 17 00:00:00 2001 From: anatawa12 Date: Tue, 29 Oct 2024 10:35:51 +0900 Subject: [PATCH 2/2] =?UTF-8?q?docs(changelog):=20public=20to=20home?= =?UTF-8?q?=E3=83=A2=E3=83=87=E3=83=AC=E3=83=BC=E3=82=B7=E3=83=A7=E3=83=B3?= =?UTF-8?q?=E3=81=8C=20withReplies=20=E3=81=AB=E9=81=A9=E7=94=A8=E3=81=95?= =?UTF-8?q?=E3=82=8C=E3=81=A6=E3=81=AA=E3=81=84=E5=95=8F=E9=A1=8C=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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)