mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
⚡ Temporary fix to repair build
This commit is contained in:
parent
63280b7407
commit
ae902589b8
|
@ -402,6 +402,7 @@ export class Redis implements INodeType {
|
|||
} else if (type === 'hash') {
|
||||
const clientHset = util.promisify(client.hset).bind(client);
|
||||
for (const key of Object.keys(value)) {
|
||||
// @ts-ignore
|
||||
await clientHset(keyName, key, (value as IDataObject)[key]!.toString());
|
||||
}
|
||||
} else if (type === 'list') {
|
||||
|
|
Loading…
Reference in a new issue