avoid crash when new notification list is empty
This commit is contained in:
parent
38db48c7cb
commit
0945b881f5
|
@ -463,7 +463,7 @@ public class NotificationsFragment extends SFragment implements
|
||||||
}
|
}
|
||||||
int end = notifications.size();
|
int end = notifications.size();
|
||||||
Notification last = notifications.get(end - 1);
|
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);
|
notifications.addAll(newNotifications);
|
||||||
List<NotificationViewData> newViewDatas = notifications.getPairedCopy()
|
List<NotificationViewData> newViewDatas = notifications.getPairedCopy()
|
||||||
.subList(notifications.size() - newNotifications.size(),
|
.subList(notifications.size() - newNotifications.size(),
|
||||||
|
|
Loading…
Reference in New Issue