From d4c5e031c2591e05bda7ad637a936a3a9c9bc304 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 16 Sep 2026 13:31:09 +0300 Subject: [PATCH] fix reprooted posts --- src/composables/useConversation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/composables/useConversation.js b/src/composables/useConversation.js index ef088a2c6..8bb25fdbd 100644 --- a/src/composables/useConversation.js +++ b/src/composables/useConversation.js @@ -51,7 +51,7 @@ export function useConversation(statusId, expanded) { return idA < idB ? -1 : 1 } } - const fullConversation = ref(new Set([currentStatus.value?.id].filter(Boolean))) + const fullConversation = ref(new Set([mainStatus.value?.id].filter(Boolean))) const fullyLoaded = ref(false) const conversationId = computed( () => mainStatus.value?.statusnet_conversation_id, @@ -113,7 +113,7 @@ export function useConversation(statusId, expanded) { fullConversation.value = new Set([ ...ancestors, - currentStatus.value, + mainStatus.value, ...descendants ].map(({ id }) => id))