mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 17:16:14 +01:00
feat: remove uid:<uid>:ignored:cids (#7099)
use cid:<cid>:ignorers instead
This commit is contained in:
committed by
GitHub
parent
7a9299f374
commit
263c918088
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user