From 34e12d208f26363973b07d83616285d7ca0ac623 Mon Sep 17 00:00:00 2001 From: REIS Benjamin Date: Wed, 19 Oct 2016 15:06:11 +0200 Subject: [PATCH] Fix index of sipAddress sipPhones sipEmails --- Classes/ContactDetailsTableView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/ContactDetailsTableView.m b/Classes/ContactDetailsTableView.m index f8783d859..f22220acc 100644 --- a/Classes/ContactDetailsTableView.m +++ b/Classes/ContactDetailsTableView.m @@ -350,7 +350,7 @@ UIContactDetailsCell *cell = (UIContactDetailsCell *)view; // we cannot use indexPathForCell method here because if the cell is not visible anymore, // it will return nil.. - NSIndexPath *path = cell.indexPath; // [self.tableView indexPathForCell:cell]; + NSIndexPath *path = [self.tableView indexPathForCell:cell]; // [self.tableView indexPathForCell:cell]; ContactSections sect = (ContactSections)[path section]; NSString *value = [textField text];