From eb28e178a7dcca08d26f69ddc624d3bba080c81c Mon Sep 17 00:00:00 2001 From: barisusakli Date: Mon, 25 Apr 2016 19:06:07 +0300 Subject: [PATCH] closes #4567 --- src/categories/create.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/categories/create.js b/src/categories/create.js index 7f1f3955f7..f6338f8ef2 100644 --- a/src/categories/create.js +++ b/src/categories/create.js @@ -97,11 +97,11 @@ module.exports = function(Categories) { destination = results.destination; var tasks = []; - if (parseInt(results.source.parentCid, 10)) { + if (utils.isNumber(results.source.parentCid)) { tasks.push(async.apply(db.sortedSetAdd, 'cid:' + results.source.parentCid + ':children', results.source.order, toCid)); } - if (destination && parseInt(destination.parentCid, 10)) { + if (destination && utils.isNumber(destination.parentCid)) { tasks.push(async.apply(db.sortedSetRemove, 'cid:' + destination.parentCid + ':children', toCid)); }