mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(FTP Node): Fix issue with paireditems not always working (#8613)
This commit is contained in:
@@ -548,6 +548,7 @@ export class Ftp implements INodeType {
|
|||||||
const newItem: INodeExecutionData = {
|
const newItem: INodeExecutionData = {
|
||||||
json: items[i].json,
|
json: items[i].json,
|
||||||
binary: {},
|
binary: {},
|
||||||
|
pairedItem: items[i].pairedItem,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (items[i].binary !== undefined && newItem.binary) {
|
if (items[i].binary !== undefined && newItem.binary) {
|
||||||
@@ -814,6 +815,7 @@ export class Ftp implements INodeType {
|
|||||||
|
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
|
|
||||||
return [returnItems];
|
return [returnItems];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user