aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mongodb.py3
-rwxr-xr-xpyAggr3g470r.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/mongodb.py b/mongodb.py
index bc318add..991ed62b 100644
--- a/mongodb.py
+++ b/mongodb.py
@@ -138,7 +138,8 @@ class Articles(object):
collection = self.db[str(feed_id)]
collection.update({"type": 1}, {"$set": {"article_readed": readed}}, multi=True)
else:
- collection.update({"article_id": article_id}, {"$set": {"article_readed": readed}})
+ for feed_id in self.db.collection_names():
+ self.mark_as_read(readed, feed_id, None)
def list_collections(self):
"""
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 6dc48d43..ccb47150 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -961,7 +961,7 @@ class Root:
# Mark all articles as read.
if param == "":
- pass
+ self.articles.mark_as_read(True, None, None)
# Mark all articles from a feed as read.
elif param == "Feed" or param == "Feed_FromMainPage":
self.articles.mark_as_read(True, identifiant, None)
bgstack15