From 6c4c12c136ea7edf1397330eb0dc5515a7d8490b Mon Sep 17 00:00:00 2001 From: plebeius Date: Wed, 11 Feb 2026 18:15:06 +0800 Subject: [PATCH] fix(reply): replies should always target the OP, not other replies --- src/stores/use-reply-modal-store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/use-reply-modal-store.ts b/src/stores/use-reply-modal-store.ts index 0f5b7ac4..94afed88 100644 --- a/src/stores/use-reply-modal-store.ts +++ b/src/stores/use-reply-modal-store.ts @@ -78,7 +78,7 @@ const useReplyModalStore = create((set, get) => ({ const scrollY = isMobile ? window.scrollY : 0; set({ - activeCid: parentCid, + activeCid: postCid, parentNumber: parentNumber ?? null, threadNumber: threadNumber ?? null, threadCid: postCid,