1
0
Fork 0

Check missing status with hero status too

This commit is contained in:
Lim Chee Aun 2023-05-20 01:19:25 +08:00
parent 0df21af374
commit 3acaac2d47

View file

@ -271,7 +271,8 @@ function StatusThread({ id, closeLink = '/', instance: propInstance }) {
if (
status.inReplyToId &&
!descendants.find((s) => s.id === status.inReplyToId)
!descendants.find((s) => s.id === status.inReplyToId) &&
status.inReplyToId !== heroStatus.id
) {
missingStatuses.add(status.inReplyToId);
}