Fix conversation main status being selectable

This commit is contained in:
Shadowfacts 2021-02-07 20:16:08 -05:00
parent b0ebef2cfd
commit e4ff632dcb
1 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,10 @@ class ConversationTableViewController: EnhancedTableViewController {
let identifier = id == self.mainStatusID ? "mainStatusCell" : "statusCell"
let cell = tableView.dequeueReusableCell(withIdentifier: identifier, for: indexPath) as! BaseStatusTableViewCell
if id == self.mainStatusID {
cell.selectionStyle = .none
}
cell.delegate = self
cell.showStatusAutomatically = self.showStatusesAutomatically