mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 14:16:39 +01:00
Check missing status with hero status too
This commit is contained in:
parent
0df21af374
commit
3acaac2d47
1 changed files with 2 additions and 1 deletions
|
@ -271,7 +271,8 @@ function StatusThread({ id, closeLink = '/', instance: propInstance }) {
|
||||||
|
|
||||||
if (
|
if (
|
||||||
status.inReplyToId &&
|
status.inReplyToId &&
|
||||||
!descendants.find((s) => s.id === status.inReplyToId)
|
!descendants.find((s) => s.id === status.inReplyToId) &&
|
||||||
|
status.inReplyToId !== heroStatus.id
|
||||||
) {
|
) {
|
||||||
missingStatuses.add(status.inReplyToId);
|
missingStatuses.add(status.inReplyToId);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue