fix(reply): replies should always target the OP, not other replies

This commit is contained in:
plebeius
2026-02-11 18:15:06 +08:00
parent af259ad032
commit 6c4c12c136
+1 -1
View File
@@ -78,7 +78,7 @@ const useReplyModalStore = create<ReplyModalState>((set, get) => ({
const scrollY = isMobile ? window.scrollY : 0;
set({
activeCid: parentCid,
activeCid: postCid,
parentNumber: parentNumber ?? null,
threadNumber: threadNumber ?? null,
threadCid: postCid,