mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
refactor: Use NodeConnectionType consistently across the code base (no-changelog) (#10595)
This commit is contained in:
@@ -292,10 +292,10 @@ export class Webhook extends Node {
|
||||
const processFiles: MultiPartFormData.File[] = [];
|
||||
let multiFile = false;
|
||||
if (Array.isArray(files[key])) {
|
||||
processFiles.push(...(files[key] as MultiPartFormData.File[]));
|
||||
processFiles.push(...files[key]);
|
||||
multiFile = true;
|
||||
} else {
|
||||
processFiles.push(files[key] as MultiPartFormData.File);
|
||||
processFiles.push(files[key]);
|
||||
}
|
||||
|
||||
let fileCount = 0;
|
||||
|
||||
Reference in New Issue
Block a user