Skip to content

Commit 37097ca

Browse files
committed
feat(manager): convert hset value to JS
1 parent 7030305 commit 37097ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/manager/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ async function handleCommand(command: string) {
6262
break;
6363
case 'hset':
6464
await dataAbstraction().hmset(args[0] as any, args[1], {
65-
[args[2]]: args[3],
65+
[args[2]]: eval(args[3]),
6666
});
6767
break;
6868

0 commit comments

Comments
 (0)