mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
chore: Lintfix nodes-base (#16877)
This commit is contained in:
@@ -15,7 +15,7 @@ export async function gotifyApiRequest(
|
||||
|
||||
body: any = {},
|
||||
qs: IDataObject = {},
|
||||
uri?: string | undefined,
|
||||
uri?: string,
|
||||
_option = {},
|
||||
): Promise<any> {
|
||||
const credentials = await this.getCredentials('gotifyApi');
|
||||
@@ -30,7 +30,7 @@ export async function gotifyApiRequest(
|
||||
qs,
|
||||
uri: uri || `${credentials.url}${path}`,
|
||||
json: true,
|
||||
rejectUnauthorized: !credentials.ignoreSSLIssues as boolean,
|
||||
rejectUnauthorized: !credentials.ignoreSSLIssues,
|
||||
};
|
||||
try {
|
||||
if (Object.keys(body as IDataObject).length === 0) {
|
||||
|
||||
Reference in New Issue
Block a user