Skip to content

Commit

Permalink
fix(ui): wrong reply to account (#2649)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin authored Mar 5, 2024
1 parent 873c62e commit 62f7025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/status/StatusReplyingTo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 62f7025

Please sign in to comment.