fix an error where opening notifications would lead to the wrong status

This commit is contained in:
Conny Duck 2017-11-04 13:25:37 +01:00
parent 764cbac7b7
commit 42aa75b92e
1 changed files with 1 additions and 1 deletions

View File

@ -532,7 +532,7 @@ public class NotificationsFragment extends SFragment implements
notifications.addAll(newNotifications);
List<NotificationViewData> newViewDatas = notifications.getPairedCopy()
.subList(notifications.size() - newNotifications.size(),
notifications.size() - 1);
notifications.size());
adapter.addItems(newViewDatas);
}
}