Fix pinned statuses from foreign instances not showing on Mastodon
This commit is contained in:
parent
54c01be7ff
commit
6ba5f70615
|
@ -91,9 +91,8 @@ class TimelineStatusTableViewCell: BaseStatusTableViewCell {
|
||||||
|
|
||||||
doUpdateTimestamp(status: status)
|
doUpdateTimestamp(status: status)
|
||||||
|
|
||||||
let pinned = showPinned && (status.pinned ?? false)
|
timestampLabel.isHidden = showPinned
|
||||||
timestampLabel.isHidden = pinned
|
pinImageView.isHidden = !showPinned
|
||||||
pinImageView.isHidden = !pinned
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override func updateGrayscaleableUI(account: AccountMO, status: StatusMO) {
|
override func updateGrayscaleableUI(account: AccountMO, status: StatusMO) {
|
||||||
|
|
Loading…
Reference in New Issue