@custom-js/n8n-nodes-pdf-toolkit-v2 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -14,7 +14,7 @@ async function executeMerge(executeFunctions, apiHelper, itemIndex) {
|
|
|
14
14
|
if (inputType === 'binary') {
|
|
15
15
|
// Merge all items if binary
|
|
16
16
|
if (itemIndex > 0)
|
|
17
|
-
return
|
|
17
|
+
return []; // Skip subsequent items
|
|
18
18
|
const items = executeFunctions.getInputData();
|
|
19
19
|
const binaryPropertyName = executeFunctions.getNodeParameter('binaryPropertyName', 0);
|
|
20
20
|
const files = await Promise.all(items.map(async (itm, idx) => {
|