🐛 Add back await that error can get caught

This commit is contained in:
Jan Oberhauser 2019-10-05 13:44:25 +02:00
parent 82d0c8deeb
commit 789f064ed0
2 changed files with 2 additions and 2 deletions

View file

@ -153,7 +153,7 @@ export async function apiRequest(this: IHookFunctions | IExecuteFunctions | ILoa
}; };
try { try {
return this.helpers.request!(options); return await this.helpers.request!(options);
} catch (error) { } catch (error) {
if (error.statusCode === 401) { if (error.statusCode === 401) {
// Return a clear error // Return a clear error

View file

@ -39,7 +39,7 @@ export async function twilioApiRequest(this: IHookFunctions | IExecuteFunctions,
}; };
try { try {
return this.helpers.request(options); return await this.helpers.request(options);
} catch (error) { } catch (error) {
if (error.statusCode === 401) { if (error.statusCode === 401) {
// Return a clear error // Return a clear error