From 60921cb95f540f3371ac2926bcaede65e3a4fdaf Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 14 Feb 2023 21:11:33 -0500 Subject: [PATCH] Fix tapping reblog count in conv main status showing favorites list --- .../Views/Status/ConversationMainStatusCollectionViewCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tusker/Views/Status/ConversationMainStatusCollectionViewCell.swift b/Tusker/Views/Status/ConversationMainStatusCollectionViewCell.swift index fecb24f4..93a6683a 100644 --- a/Tusker/Views/Status/ConversationMainStatusCollectionViewCell.swift +++ b/Tusker/Views/Status/ConversationMainStatusCollectionViewCell.swift @@ -426,7 +426,7 @@ class ConversationMainStatusCollectionViewCell: UICollectionViewListCell, Status guard let delegate else { return } - let vc = StatusActionAccountListViewController(actionType: .favorite, statusID: statusID, statusState: statusState.copy(), accountIDs: nil, mastodonController: mastodonController) + let vc = StatusActionAccountListViewController(actionType: .reblog, statusID: statusID, statusState: statusState.copy(), accountIDs: nil, mastodonController: mastodonController) vc.showInacurateCountWarning = true delegate.show(vc) }