diff --git a/Signal/src/ViewControllers/HomeView/HomeViewController.m b/Signal/src/ViewControllers/HomeView/HomeViewController.m index 1029f845d..6844a55fa 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewController.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewController.m @@ -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];