mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Honour un-saving of stories in saved stories view.
This commit is contained in:
parent
3d55c6cbd0
commit
e737e6bafa
1 changed files with 3 additions and 1 deletions
|
@ -129,7 +129,9 @@ public class FeedProvider extends ContentProvider {
|
|||
return 1;
|
||||
|
||||
case ALL_STORIES:
|
||||
return db.delete(DatabaseConstants.STORY_TABLE, null, null);
|
||||
db.delete(DatabaseConstants.STORY_TABLE, null, null);
|
||||
db.delete(DatabaseConstants.STARRED_STORIES_TABLE, null, null);
|
||||
return 1;
|
||||
|
||||
case SOCIALFEED_STORIES:
|
||||
StringBuilder socialDeleteBuilder = new StringBuilder();
|
||||
|
|
Loading…
Add table
Reference in a new issue