@iobroker/db-objects-redis 4.0.10 → 4.0.13-alpha.1-20220219-041f837c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4443,6 +4443,9 @@ class ObjectsInRedisClient {
|
|
|
4443
4443
|
let uniqueKeys = [];
|
|
4444
4444
|
|
|
4445
4445
|
stream.on('data', resultKeys => {
|
|
4446
|
+
if (!Array.isArray(resultKeys)) {
|
|
4447
|
+
return;
|
|
4448
|
+
}
|
|
4446
4449
|
// append result keys to uniqueKeys without duplicates
|
|
4447
4450
|
uniqueKeys = [...uniqueKeys, ...resultKeys];
|
|
4448
4451
|
});
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iobroker/db-objects-redis",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.13-alpha.1-20220219-041f837c",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=12.0.0"
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@iobroker/db-base": "4.0.
|
|
8
|
+
"@iobroker/db-base": "4.0.13-alpha.1-20220219-041f837c",
|
|
9
9
|
"deep-clone": "^3.0.3",
|
|
10
10
|
"ioredis": "^4.28.2",
|
|
11
11
|
"node.extend": "^2.0.2",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"lib/",
|
|
37
37
|
"index.js"
|
|
38
38
|
],
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "3cd3477239dd22c10ac42a0de5eb6761216071ae"
|
|
40
40
|
}
|