Merge branch 'mkirk/fix-input-glitch-after-search'

This commit is contained in:
Michael Kirk 2018-06-22 13:49:40 -06:00
commit 20b34185f9

View File

@ -1056,7 +1056,9 @@ NSString *const kArchivedConversationsReuseIdentifier = @"kArchivedConversations
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
DDLogInfo(@"%@ %s %zd %zd", self.logTag, __PRETTY_FUNCTION__, indexPath.row, indexPath.section);
DDLogInfo(@"%@ %s %ld %ld", self.logTag, __PRETTY_FUNCTION__, (long)indexPath.row, (long)indexPath.section);
[self.searchBar resignFirstResponder];
if ([self isIndexPathForArchivedConversations:indexPath]) {
[self showArchivedConversations];