mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -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;
|
||||
for (let itemIndex = 0; itemIndex < items.length; 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
|
||||
newItem = {
|
||||
|
|
Loading…
Reference in a new issue