Fix tapping reblog count in conv main status showing favorites list

This commit is contained in:
Shadowfacts 2023-02-14 21:11:33 -05:00
parent 9e76879ce6
commit 60921cb95f
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}