mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -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,
|
||||
uri: uri || `${credentials.url}/api${resource}`,
|
||||
body,
|
||||
rejectUnauthorized: credentials.allowUnauthorizedCerts as boolean,
|
||||
rejectUnauthorized: !credentials.allowUnauthorizedCerts as boolean,
|
||||
json: true,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue