mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
Fix missing handling for 'all'-type folder fetching.
This commit is contained in:
parent
84002cdab9
commit
1cfef7f30f
2 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue