From 7f0a9d8d5ade904e963674edd9e0d9e47470e059 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Sun, 17 Dec 2023 18:09:25 -0500 Subject: [PATCH] Fix status that is reblogged and contains a followed hashtag not showing reblogger label --- Tusker/Views/Status/TimelineStatusCollectionViewCell.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift b/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift index 4a24f005..99732dd5 100644 --- a/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift +++ b/Tusker/Views/Status/TimelineStatusCollectionViewCell.swift @@ -590,9 +590,7 @@ class TimelineStatusCollectionViewCell: UICollectionViewListCell, StatusCollecti if let reblogStatus { hideTimelineReason = false updateRebloggerLabel(reblogger: reblogStatus.account) - } - - if showFollowedHashtags { + } else if showFollowedHashtags { let hashtags = mastodonController.followedHashtags.filter({ followed in status.hashtags.contains(where: { followed.name == $0.name }) }) if !hashtags.isEmpty { hideTimelineReason = false