mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix(FTP Node): Fix issue with paireditems not always working (#8613)
This commit is contained in:
parent
32281d12d7
commit
d38a822b95
|
@ -548,6 +548,7 @@ export class Ftp implements INodeType {
|
|||
const newItem: INodeExecutionData = {
|
||||
json: items[i].json,
|
||||
binary: {},
|
||||
pairedItem: items[i].pairedItem,
|
||||
};
|
||||
|
||||
if (items[i].binary !== undefined && newItem.binary) {
|
||||
|
@ -814,6 +815,7 @@ export class Ftp implements INodeType {
|
|||
|
||||
throw error;
|
||||
}
|
||||
|
||||
return [returnItems];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue