mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix bug in MobeBinaryData-Node that it read options wrong
This commit is contained in:
parent
b488ae8d3a
commit
729da6f73e
|
@ -318,7 +318,7 @@ export class MoveBinaryData implements INodeType {
|
||||||
let options: IDataObject;
|
let options: IDataObject;
|
||||||
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
for (let itemIndex = 0; itemIndex < items.length; itemIndex++) {
|
||||||
item = items[itemIndex];
|
item = items[itemIndex];
|
||||||
options = this.getNodeParameter('options', 0, {}) as IDataObject;
|
options = this.getNodeParameter('options', itemIndex, {}) as IDataObject;
|
||||||
|
|
||||||
// Copy the whole JSON data as data on any level can be renamed
|
// Copy the whole JSON data as data on any level can be renamed
|
||||||
newItem = {
|
newItem = {
|
||||||
|
|
Loading…
Reference in a new issue