mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
⚡ Minor improvements
This commit is contained in:
parent
18f0ad636c
commit
dc2bda4baa
|
@ -179,7 +179,7 @@ export class Jira implements INodeType {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return {
|
return {
|
||||||
status: 'Error',
|
status: 'Error',
|
||||||
message: `Connection details not valid; ${err.message}`,
|
message: `Connection details not valid: ${err.message}`,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -177,11 +177,11 @@ export class Zendesk implements INodeType {
|
||||||
};
|
};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await this.helpers.request!(options);
|
await this.helpers.request!(options);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return {
|
return {
|
||||||
status: 'Error',
|
status: 'Error',
|
||||||
message: `Connection details not valid; ${error.message}`,
|
message: `Connection details not valid: ${error.message}`,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue