Honour un-saving of stories in saved stories view.

This commit is contained in:
ojiikun 2014-01-12 20:26:23 +00:00
parent 3d55c6cbd0
commit e737e6bafa

View file

@ -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();