aboutsummaryrefslogtreecommitdiff
path: root/source/mongodb.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/mongodb.py')
-rw-r--r--source/mongodb.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/mongodb.py b/source/mongodb.py
index 7dc83394..04cd44fa 100644
--- a/source/mongodb.py
+++ b/source/mongodb.py
@@ -231,6 +231,8 @@ class Articles(object):
"""
collection = self.db[str(feed_id)]
collection.update({"type": 0, "feed_id":feed_id}, {"$set": changes}, multi=True)
+ if "feed_id" in changes.keys():
+ self.db[str(feed_id)].rename(str(changes["feed_id"]))
# Functions on database
def drop_database(self):
bgstack15