aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-02-25 17:41:34 +0100
committercedricbonhomme <devnull@localhost>2010-02-25 17:41:34 +0100
commit840c109ec0b619e9c41215e7cd2e8ec37d33cb19 (patch)
treea4c913fcf4980d80ea8e93b38862fa4faa751260
parentMinor bug fix. (diff)
downloadnewspipe-840c109ec0b619e9c41215e7cd2e8ec37d33cb19.tar.gz
newspipe-840c109ec0b619e9c41215e7cd2e8ec37d33cb19.tar.bz2
newspipe-840c109ec0b619e9c41215e7cd2e8ec37d33cb19.zip
Bug fix. Mark all articles from a feed as read.
-rw-r--r--pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index eaf7038a..b710da16 100644
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -390,7 +390,7 @@ class Root:
c.execute("UPDATE articles SET article_readed=1")
# Mark all articles from a feed as read.
elif param == "Feed" or param == "Feed_FromMainPage":
- c.execute("UPDATE articles SET article_readed=1 WHERE feed_site_link='" + self.dic[identifiant][0][6] + "'")
+ c.execute("UPDATE articles SET article_readed=1 WHERE feed_link='" + self.dic[identifiant][0][6] + "'")
# Mark an article as read.
elif param == "Article":
c.execute("UPDATE articles SET article_readed=1 WHERE article_link='" + identifiant + "'")
bgstack15