mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Need to pass story order and read filter to sync service when refresh triggered in AllSharedStoriesReading activity
This commit is contained in:
parent
e05c396c4b
commit
1b7e1ae8ed
1 changed files with 2 additions and 0 deletions
|
@ -87,6 +87,8 @@ public class AllSharedStoriesReading extends Reading {
|
|||
if (page > 1) {
|
||||
intent.putExtra(SyncService.EXTRA_TASK_PAGE_NUMBER, Integer.toString(page));
|
||||
}
|
||||
intent.putExtra(SyncService.EXTRA_TASK_ORDER, PrefsUtils.getStoryOrderForFolder(this, PrefConstants.ALL_SHARED_STORIES_FOLDER_NAME));
|
||||
intent.putExtra(SyncService.EXTRA_TASK_READ_FILTER, PrefsUtils.getReadFilterForFolder(this, PrefConstants.ALL_SHARED_STORIES_FOLDER_NAME));
|
||||
|
||||
startService(intent);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue