diff --git a/Tusker/Screens/Conversation/ConversationCollectionViewController.swift b/Tusker/Screens/Conversation/ConversationCollectionViewController.swift index 1712e984..8f16309e 100644 --- a/Tusker/Screens/Conversation/ConversationCollectionViewController.swift +++ b/Tusker/Screens/Conversation/ConversationCollectionViewController.swift @@ -364,7 +364,9 @@ extension ConversationCollectionViewController: UICollectionViewDelegate { conv.showStatusesAutomatically = showStatusesAutomatically show(conv) } else { - selected(status: id, state: state.copy()) + let conv = ConversationViewController(for: id, state: state.copy(), mastodonController: mastodonController) + conv.showStatusesAutomatically = showStatusesAutomatically + show(conv) } case .expandThread(childThreads: let childThreads, inline: _): let indexPathBeforeExpandThread = IndexPath(row: indexPath.row - 1, section: indexPath.section)