fixing upgrade script if order is not set

This commit is contained in:
Julian Lam
2014-03-03 10:17:11 -05:00
parent fc53385ede
commit 30e83fdabe

View File

@@ -864,6 +864,12 @@ Upgrade.upgrade = function(callback) {
if(err) {
return next(err);
}
// If there was no order present, put it at the end
if (!order) {
order = cids.length;
}
db.sortedSetAdd('categories:cid', order, cid, next);
});
}, function(err) {