Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions appleApp/ios/UI/Component/Status/StatusUIKitView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ final class StatusUIKitView: UIView, UIGestureRecognizerDelegate, ManualLayoutMe
let aiTldrEnabled: Bool
let showParents: Bool
let parentKeys: [String]
let parentRenderHashes: [Int32]
let quoteKeys: [String]
let quoteRenderHashes: [Int32]
let appearance: StatusUIKitAppearance

init(
Expand Down Expand Up @@ -85,7 +87,9 @@ final class StatusUIKitView: UIView, UIGestureRecognizerDelegate, ManualLayoutMe
self.aiTldrEnabled = aiTldrEnabled
self.showParents = showParents
self.parentKeys = inlineParents.map { String(describing: $0.statusKey) }
self.parentRenderHashes = inlineParents.map { $0.renderHash }
self.quoteKeys = quotes.map { String(describing: $0.statusKey) }
self.quoteRenderHashes = quotes.map { $0.renderHash }
self.appearance = appearance
}
}
Expand Down
Loading