fix crash on delayed long-press delete feed

This commit is contained in:
dosiecki 2018-01-25 04:36:15 -08:00
parent 6318ed9ee6
commit 360ab6f90c

View file

@ -735,7 +735,7 @@ public class FolderListAdapter extends BaseExpandableListAdapter {
}
/** Get the cached Feed object for the feed at the given list location. */
public Feed getFeed(int groupPosition, int childPosition) {
public synchronized Feed getFeed(int groupPosition, int childPosition) {
return activeFolderChildren.get(groupPosition).get(childPosition);
}