mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Fix rejectUnauthorized setting on Hive Node
This commit is contained in:
parent
7bd8f9f56a
commit
2f79197700
|
@ -30,7 +30,7 @@ export async function theHiveApiRequest(this: IHookFunctions | IExecuteFunctions
|
||||||
qs: query,
|
qs: query,
|
||||||
uri: uri || `${credentials.url}/api${resource}`,
|
uri: uri || `${credentials.url}/api${resource}`,
|
||||||
body,
|
body,
|
||||||
rejectUnauthorized: credentials.allowUnauthorizedCerts as boolean,
|
rejectUnauthorized: !credentials.allowUnauthorizedCerts as boolean,
|
||||||
json: true,
|
json: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue