Why some posts have inReplyToAccountId but doesn't have inReplyToId?
Not sure if this will cause other bugs
This commit is contained in:
parent
b472e496d1
commit
20dd843409
1 changed files with 4 additions and 2 deletions
|
@ -837,7 +837,9 @@ function Status({
|
||||||
ref={statusRef}
|
ref={statusRef}
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
class={`status ${
|
class={`status ${
|
||||||
!withinContext && inReplyToAccount ? 'status-reply-to' : ''
|
!withinContext && inReplyToId && inReplyToAccount
|
||||||
|
? 'status-reply-to'
|
||||||
|
: ''
|
||||||
} visibility-${visibility} ${_pinned ? 'status-pinned' : ''} ${
|
} visibility-${visibility} ${_pinned ? 'status-pinned' : ''} ${
|
||||||
{
|
{
|
||||||
s: 'small',
|
s: 'small',
|
||||||
|
@ -1003,7 +1005,7 @@ function Status({
|
||||||
)}
|
)}
|
||||||
{!withinContext && (
|
{!withinContext && (
|
||||||
<>
|
<>
|
||||||
{inReplyToAccountId === status.account?.id ||
|
{(!!inReplyToId && inReplyToAccountId === status.account?.id) ||
|
||||||
!!snapStates.statusThreadNumber[sKey] ? (
|
!!snapStates.statusThreadNumber[sKey] ? (
|
||||||
<div class="status-thread-badge">
|
<div class="status-thread-badge">
|
||||||
<Icon icon="thread" size="s" />
|
<Icon icon="thread" size="s" />
|
||||||
|
|
Loading…
Add table
Reference in a new issue