1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

its item.value, not item.json..

This commit is contained in:
Leibale Eidelman
2023-08-29 12:29:30 -07:00
committed by GitHub
parent f476c38971
commit 43969a3f38

View File

@@ -18,7 +18,7 @@ export function transformArguments(items: Array<JsonMSetItem>): Array<string> {
const item = items[i]; const item = items[i];
args[argsIndex++] = item.key; args[argsIndex++] = item.key;
args[argsIndex++] = item.path; args[argsIndex++] = item.path;
args[argsIndex++] = transformRedisJsonArgument(item.json); args[argsIndex++] = transformRedisJsonArgument(item.value);
} }
return args; return args;