Merge pull request #336 from hgourvest/master

avoid crash when new notification list is empty
This commit is contained in:
Vavassor 2017-07-14 16:03:16 -04:00 committed by GitHub
commit 92c24fbd1d
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ public class NotificationsFragment extends SFragment implements
}
int end = notifications.size();
Notification last = notifications.get(end - 1);
if (last != null && !findNotification(newNotifications, last.id)) {
if (last != null && !findNotification(newNotifications, last.id) && newNotifications.size() > 0) {
notifications.addAll(newNotifications);
List<NotificationViewData> newViewDatas = notifications.getPairedCopy()
.subList(notifications.size() - newNotifications.size(),