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

pull/1/head
Michael Kirk 7 years ago
commit 20b34185f9

@ -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];

Loading…
Cancel
Save