diff --git a/components/status/StatusReplyingTo.vue b/components/status/StatusReplyingTo.vue index 4a34186a..fd937175 100644 --- a/components/status/StatusReplyingTo.vue +++ b/components/status/StatusReplyingTo.vue @@ -24,7 +24,7 @@ useIntersectionObserver( watch( () => [props.status, targetIsVisible.value] satisfies WatcherType, ([newStatus, newVisible]) => { - if (newStatus.account) { + if (newStatus.account && newStatus.inReplyToAccountId === newStatus.account.id) { account.value = newStatus.account return }