1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-20 21:59:43 +02:00

fix: Ability to configure claims source

This commit is contained in:
Maksim Eltyshev 2024-09-20 14:37:17 +02:00
parent 080991c156
commit fb3a7f9039
7 changed files with 43 additions and 40 deletions

View file

@ -130,8 +130,8 @@ async function sendWebhook(webhook, event, data, user) {
`Webhook ${webhook.url} failed with status ${response.status} and message: ${message}`,
);
}
} catch (e) {
sails.log.error(`Webhook ${webhook.url} failed with error message: ${e.message}`);
} catch (error) {
sails.log.error(`Webhook ${webhook.url} failed with error: ${error}`);
}
}