diff --git a/components/status/StatusCard.vue b/components/status/StatusCard.vue index 54022d53..d1e15440 100644 --- a/components/status/StatusCard.vue +++ b/components/status/StatusCard.vue @@ -28,8 +28,8 @@ const status = $computed(() => { return props.status }) -// Use original status, avoid connecting a reblog (review if we should relax this) -const directReply = $computed(() => props.hasNewer || (!!props.status.inReplyToId && (props.status.inReplyToId === props.newer?.id || props.status.inReplyToId === props.newer?.reblog?.id))) +// Use original status, avoid connecting a reblog +const directReply = $computed(() => props.hasNewer || (!!status.inReplyToId && (status.inReplyToId === props.newer?.id || status.inReplyToId === props.newer?.reblog?.id))) // Use reblogged status, connect it to further replies const connectReply = $computed(() => props.hasOlder || status.id === props.older?.inReplyToId) @@ -103,7 +103,7 @@ const isDM = $computed(() => status.visibility === 'direct') >