Revert "Fix custom emojis in display namesnot showing in conversation main"

This reverts commit 73da828e7cec09bcfbe65295bbd2f02e3b719ff6.

Fixes #89
This commit is contained in:
Shadowfacts 2020-03-02 18:31:38 -05:00
parent fa4b5d3542
commit 44fbbd6a80
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
1 changed files with 7 additions and 7 deletions

View File

@ -19,7 +19,13 @@ class ConversationTableViewController: EnhancedTableViewController {
let mainStatusID: String
let mainStatusState: StatusState
var statuses: [(id: String, state: StatusState)] = []
var statuses: [(id: String, state: StatusState)] = [] {
didSet {
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
}
var showStatusesAutomatically = false
var visibilityBarButtonItem: UIBarButtonItem!
@ -63,12 +69,6 @@ class ConversationTableViewController: EnhancedTableViewController {
self.statuses = parents.map { ($0.id, .unknown) } + self.statuses + context.descendants.map { ($0.id, .unknown) }
let indexPath = IndexPath(row: parents.count, section: 0)
DispatchQueue.main.async {
let ancestorsIndexPaths = (0..<parents.count).map { IndexPath(row: $0, section: 0) }
let descendantsIndexPaths = ((parents.count + 1)..<(self.statuses.count)).map { IndexPath(row: $0, section: 0) }
// despite its name, UITableView.RowAnimation.none actually uses the automatic animation, so we force-disable it
UIView.performWithoutAnimation {
self.tableView.insertRows(at: ancestorsIndexPaths + descendantsIndexPaths, with: .none)
}
self.tableView.scrollToRow(at: indexPath, at: .middle, animated: false)
}
}