mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
⚡ Make Github webhook create error message clearer
This commit is contained in:
parent
f97dbf795a
commit
193dd210ff
|
@ -352,7 +352,17 @@ export class GithubTrigger implements INodeType {
|
||||||
active: true,
|
active: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
const responseData = await githubApiRequest.call(this, 'POST', endpoint, body);
|
|
||||||
|
let responseData;
|
||||||
|
try {
|
||||||
|
responseData = await githubApiRequest.call(this, 'POST', endpoint, body);
|
||||||
|
} catch (e) {
|
||||||
|
if (e.message.includes('[422]:')) {
|
||||||
|
throw new Error('A webhook with the identical URL exists already. Please delete it manually on Github!');
|
||||||
|
}
|
||||||
|
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
|
||||||
if (responseData.id === undefined || responseData.active !== true) {
|
if (responseData.id === undefined || responseData.active !== true) {
|
||||||
// Required data is missing so was not successful
|
// Required data is missing so was not successful
|
||||||
|
|
Loading…
Reference in a new issue