Temporary fix to repair build

This commit is contained in:
Jan Oberhauser 2020-07-03 07:31:08 +02:00
parent 63280b7407
commit ae902589b8

View file

@ -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') {