diff --git a/packages/client/lib/commands/CONFIG_GET.ts b/packages/client/lib/commands/CONFIG_GET.ts index 54fa997bf6..e8339c4d9a 100644 --- a/packages/client/lib/commands/CONFIG_GET.ts +++ b/packages/client/lib/commands/CONFIG_GET.ts @@ -10,7 +10,7 @@ export default { parser.pushVariadic(parameters); }, transformReply: { - 2: transformTuplesReply, + 2: transformTuplesReply, 3: undefined as unknown as () => MapReply } } as const satisfies Command; diff --git a/packages/client/lib/commands/HGETALL.ts b/packages/client/lib/commands/HGETALL.ts index a2c3011c4c..8d53669cdd 100644 --- a/packages/client/lib/commands/HGETALL.ts +++ b/packages/client/lib/commands/HGETALL.ts @@ -11,7 +11,7 @@ export default { }, TRANSFORM_LEGACY_REPLY: true, transformReply: { - 2: transformTuplesReply, + 2: transformTuplesReply, 3: undefined as unknown as () => MapReply } } as const satisfies Command;