diff --git a/components/status/StatusReplyingTo.vue b/components/status/StatusReplyingTo.vue index cee2a4c7..60f50b68 100644 --- a/components/status/StatusReplyingTo.vue +++ b/components/status/StatusReplyingTo.vue @@ -5,7 +5,8 @@ const { status } = defineProps<{ status: Status }>() -const account = useAccountById(status.inReplyToAccountId) +const isSelf = $computed(() => status.inReplyToAccountId === status.account.id) +const account = isSelf ? computed(() => status.account) : useAccountById(status.inReplyToAccountId)