Skip to content

Commit 43969a3

Browse files
authored
its item.value, not item.json..
1 parent f476c38 commit 43969a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/json/lib/commands/MSET.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function transformArguments(items: Array<JsonMSetItem>): Array<string> {
1818
const item = items[i];
1919
args[argsIndex++] = item.key;
2020
args[argsIndex++] = item.path;
21-
args[argsIndex++] = transformRedisJsonArgument(item.json);
21+
args[argsIndex++] = transformRedisJsonArgument(item.value);
2222
}
2323

2424
return args;

0 commit comments

Comments
 (0)