diff --git a/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift b/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift index 976c2631..4748b6ab 100644 --- a/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift +++ b/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift @@ -619,10 +619,6 @@ class TimelineStatusCollectionViewCell: UICollectionViewListCell, StatusCollecti metaIndicatorsView.updateUI(status: status) timelineReasonIcon.layer.cornerRadius = Preferences.shared.avatarStyle.cornerRadiusFraction * Self.timelineReasonIconSize - if let rebloggerID, - let reblogger = mastodonController.persistentContainer.account(for: rebloggerID) { - updateRebloggerLabel(reblogger: reblogger) - } } func updateStatusState(status: StatusMO) { @@ -703,6 +699,11 @@ class TimelineStatusCollectionViewCell: UICollectionViewListCell, StatusCollecti updateUIForPreferences(status: status) + if let rebloggerID, + let reblogger = mastodonController.persistentContainer.account(for: rebloggerID) { + updateRebloggerLabel(reblogger: reblogger) + } + if isGrayscale != Preferences.shared.grayscaleImages { updateGrayscaleableUI(status: status) }