aboutsummaryrefslogtreecommitdiff
path: root/mongodb.py
diff options
context:
space:
mode:
Diffstat (limited to 'mongodb.py')
-rw-r--r--mongodb.py3
1 files changed, 2 insertions, 1 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):
"""
bgstack15