feat: remove uid:<uid>:ignored:cids (#7099)

use cid:<cid>:ignorers instead
This commit is contained in:
Barış Soner Uşaklı
2018-12-12 11:15:34 -05:00
committed by GitHub
parent 7a9299f374
commit 263c918088
10 changed files with 80 additions and 39 deletions

View File

@@ -473,8 +473,8 @@ SELECT z."value" v
};
module.isMemberOfSortedSets = function (keys, value, callback) {
if (!Array.isArray(keys)) {
return callback();
if (!Array.isArray(keys) || !keys.length) {
return setImmediate(callback, null, []);
}
value = helpers.valueToString(value);