Bug Fix: App crashes on people screen

when user swipes down on the first section header.
This commit is contained in:
Giom Foret
2017-05-22 11:12:52 +02:00
parent 306124e41a
commit e75376221c
+1 -1
View File
@@ -558,7 +558,7 @@
if (firstSectionCell)
{
// Scroll to the top of the previous section (if any)
if ([self.recentsTableView numberOfRowsInSection:(section - 1)] > 0)
if (section && [self.recentsTableView numberOfRowsInSection:(section - 1)] > 0)
{
[self.recentsTableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:(section - 1)] atScrollPosition:UITableViewScrollPositionTop animated:YES];
}