fix crash: ChatsListTableView is load before app entering foreground

This commit is contained in:
Danmei Chen 2020-05-26 21:20:46 +02:00
parent e06da76068
commit dd57e366eb

View file

@ -150,6 +150,9 @@ static int sorted_history_comparison(LinphoneChatRoom *to_insert, LinphoneChatRo
if (cell == nil)
cell = [[UIChatCell alloc] initWithIdentifier:kCellId];
if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) {
return cell;
}
[cell setChatRoom:(LinphoneChatRoom *)bctbx_list_nth_data(_data, (int)[indexPath row])];
[super accessoryForCell:cell atPath:indexPath];