diff --git a/src/database/mongo/main.js b/src/database/mongo/main.js index 0e6e471476..f02854b362 100644 --- a/src/database/mongo/main.js +++ b/src/database/mongo/main.js @@ -120,7 +120,7 @@ module.exports = function(db, module) { module.rename = function(oldKey, newKey, callback) { callback = callback || helpers.noop; - db.collection('objects').update({_key: oldKey}, {$set:{_key: newKey}}, callback); + db.collection('objects').update({_key: oldKey}, {$set:{_key: newKey}}, {multi: true}, callback); }; module.expire = function(key, seconds, callback) {