Fix getting item list selection

This commit is contained in:
Shinokuni 2019-05-17 13:59:22 +02:00
parent 38179d0110
commit e1478eab2c

View File

@ -208,7 +208,7 @@ public class MainItemListAdapter extends PagedListAdapter<ItemWithFeed, MainItem
public List<ItemWithFeed> getSelectedItems() {
List<ItemWithFeed> items = new ArrayList<>();
for (int i = 0; i < selection.size(); i++) {
for (int i : selection) {
items.add(getItem(i));
}