small fix

This commit is contained in:
Ricardo Espinoza 2020-01-17 17:50:22 -05:00
parent 83319c30dc
commit e0713863e7

View file

@ -39,6 +39,6 @@ export async function copperApiRequest(this: IHookFunctions | IExecuteFunctions
try { try {
return await this.helpers.request!(options); return await this.helpers.request!(options);
} catch (error) { } catch (error) {
throw new Error('Zoom Error: ' + error.message); throw new Error('Copper Error: ' + error.message);
} }
} }