Fix pinned statuses from foreign instances not showing on Mastodon

This commit is contained in:
Shadowfacts 2022-02-03 23:16:31 -05:00
parent 54c01be7ff
commit 6ba5f70615
1 changed files with 2 additions and 3 deletions

View File

@ -91,9 +91,8 @@ class TimelineStatusTableViewCell: BaseStatusTableViewCell {
doUpdateTimestamp(status: status)
let pinned = showPinned && (status.pinned ?? false)
timestampLabel.isHidden = pinned
pinImageView.isHidden = !pinned
timestampLabel.isHidden = showPinned
pinImageView.isHidden = !showPinned
}
override func updateGrayscaleableUI(account: AccountMO, status: StatusMO) {