mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
🐛 Fix bug in MobeBinaryData-Node that it read options wrong
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user