Fix threading UI

This commit is contained in:
Thomas Ricouard 2023-02-19 15:44:09 +01:00
parent 942279e482
commit a965386a1e
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ public struct StatusDetailView: View {
var isReplyToPrevious: Bool = false
if let index = statuses.firstIndex(where: { $0.id == status.id }),
index > 0,
statuses[index - 1].id == status.inReplyToId
statuses[index - 1].id == status.inReplyToId && status.inReplyToId != statuses.first?.id
{
isReplyToPrevious = true
}