Copy showStatusesAutomatically when selecting conversation expand thread item

Closes #303
This commit is contained in:
Shadowfacts 2022-12-12 21:06:05 -05:00
parent 7f4ab57a1d
commit f96cd1b5e2
1 changed files with 1 additions and 0 deletions

View File

@ -354,6 +354,7 @@ class ConversationTableViewController: EnhancedTableViewController {
case let .status(id: id, state: state) = dataSource.itemIdentifier(for: IndexPath(row: indexPath.row - 1, section: indexPath.section)) {
let conv = ConversationTableViewController(for: id, state: state, mastodonController: mastodonController)
conv.statusIDToScrollToOnLoad = childThreads.first!.status.id
conv.showStatusesAutomatically = showStatusesAutomatically
show(conv)
} else {
super.tableView(tableView, didSelectRowAt: indexPath)