Skip to content

Commit

Permalink
fix(Gotify Node): Fix issue with self signed certificates not working (
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored and netroy committed Jun 12, 2024
1 parent 655214d commit 1057c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Gotify/GenericFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function gotifyApiRequest(
qs,
uri: uri || `${credentials.url}${path}`,
json: true,
rejectUnauthorized: credentials.ignoreSSLIssues as boolean,
rejectUnauthorized: !credentials.ignoreSSLIssues as boolean,
};
try {
if (Object.keys(body as IDataObject).length === 0) {
Expand Down

0 comments on commit 1057c81

Please sign in to comment.