From 6185fa15528f487366fd9f48d1d9f90e684f21c4 Mon Sep 17 00:00:00 2001 From: Alayn Gortazar Date: Mon, 23 Apr 2012 00:55:24 +0200 Subject: [PATCH] Changing 'unread' state with 'queue' --- recipes/readitlater.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/readitlater.recipe b/recipes/readitlater.recipe index 9cda772354..26dbe5baa7 100644 --- a/recipes/readitlater.recipe +++ b/recipes/readitlater.recipe @@ -66,7 +66,7 @@ class Readitlater(BasicNewsRecipe): def parse_index(self): index = self.API_INDEX + 'v3/get?' + self.get_auth_params() - index += '&state=unread' + index += '&state=queue' index += '&count=' + str(self.max_articles_per_feed) index += '&sort=oldest'