removed deprecation warning

This commit is contained in:
Ricardo Espinoza 2019-12-18 12:30:16 -05:00
parent 399c25ad77
commit 01983a9c8f
2 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
{"hola":1}

View file

@ -267,7 +267,7 @@ export class MoveBinaryData implements INodeType {
}
const encoding = (options.encoding as string) || 'utf8';
let convertedValue = new Buffer(value.data, 'base64').toString(encoding);
let convertedValue = Buffer.from(value.data, 'base64').toString(encoding);
if (setAllData === true) {
// Set the full data
@ -321,7 +321,7 @@ export class MoveBinaryData implements INodeType {
}
const convertedValue = {
data: new Buffer(value as string).toString('base64'),
data: Buffer.from(value as string).toString('base64'),
mimeType: options.mimeType || 'application/json',
};
set(newItem.binary!, destinationKey, convertedValue);