Fix missing handling for 'all'-type folder fetching.

This commit is contained in:
dosiecki 2014-08-16 16:50:22 -07:00
parent 84002cdab9
commit 1cfef7f30f
2 changed files with 2 additions and 3 deletions

View file

@ -120,7 +120,6 @@ public abstract class ItemListFragment extends NbFragment implements OnScrollLis
}
}
// TODO: fix all subclasses to stop overriding this
@Override
public Loader<Cursor> onCreateLoader(int arg0, Bundle arg1) {
return dbHelper.getStoriesLoader(getFeedSet(), currentState);

View file

@ -261,9 +261,9 @@ public class APIManager {
values.put(APIConstants.PARAMETER_FEEDS, entry.getKey());
}
} else if (fs.isAllNormal()) {
; // TODO
uri = Uri.parse(APIConstants.URL_RIVER_STORIES);
} else if (fs.isAllSocial()) {
; // TODO
uri = Uri.parse(APIConstants.URL_SHARED_RIVER_STORIES);
} else if (fs.isAllSaved()) {
uri = Uri.parse(APIConstants.URL_STARRED_STORIES);
} else {