mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 18:12:44 +02:00
Fix - tableView cellForRowAtIndexPath:
return a fake cell to prevent app from crashing.
This commit is contained in:
@@ -1123,6 +1123,11 @@
|
||||
|
||||
cell = participantCell;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Return a fake cell to prevent app from crashing.
|
||||
cell = [[UITableViewCell alloc] init];
|
||||
}
|
||||
|
||||
return cell;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user