Fix assert in conversation settings view.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent c7d25a66ad
commit 1e6fd385b5

@ -183,7 +183,7 @@ NSString * const kOWSTableCellIdentifier = @"kOWSTableCellIdentifier";
return self;
}
[self commonInit];
[self owsTableCommonInit];
return self;
}
@ -195,7 +195,7 @@ NSString * const kOWSTableCellIdentifier = @"kOWSTableCellIdentifier";
return self;
}
[self commonInit];
[self owsTableCommonInit];
return self;
}
@ -207,12 +207,12 @@ NSString * const kOWSTableCellIdentifier = @"kOWSTableCellIdentifier";
return self;
}
[self commonInit];
[self owsTableCommonInit];
return self;
}
- (void)commonInit
- (void)owsTableCommonInit
{
_contents = [OWSTableContents new];
self.tableViewStyle = UITableViewStyleGrouped;

Loading…
Cancel
Save