mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Fix issue that it did set not supported parameters
This commit is contained in:
@@ -660,7 +660,7 @@ export class HttpRequest implements INodeType {
|
|||||||
let optionData: OptionData;
|
let optionData: OptionData;
|
||||||
for (const parameterName of Object.keys(jsonParameters)) {
|
for (const parameterName of Object.keys(jsonParameters)) {
|
||||||
optionData = jsonParameters[parameterName] as OptionData;
|
optionData = jsonParameters[parameterName] as OptionData;
|
||||||
const tempValue = this.getNodeParameter(parameterName, itemIndex, {}) as string | object;
|
const tempValue = this.getNodeParameter(parameterName, itemIndex, '') as string | object;
|
||||||
if (tempValue === '') {
|
if (tempValue === '') {
|
||||||
// Paramter is empty so skip it
|
// Paramter is empty so skip it
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user