fix(NocoDB Node): Fix authentication issue (#3750)

This commit is contained in:
Jonathan Bennetts
2022-07-21 12:55:20 +01:00
committed by GitHub
parent 3a98028722
commit e65016c861
2 changed files with 2 additions and 8 deletions

View File

@@ -56,7 +56,7 @@ export async function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoa
}
try {
return await this.helpers.requestWithAuthentication.call(this, 'nocodbApi', options);
return await this.helpers.requestWithAuthentication.call(this, 'nocoDb', options);
} catch (error) {
throw new NodeApiError(this.getNode(), error);
}