mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-07 13:23:31 +00:00
Fix vulnerabilities reported by Stefan Schiller from Sonar. Thanks!
This commit is contained in:
@@ -119,7 +119,7 @@ export default {
|
||||
methods: {
|
||||
getWebhook: function () {
|
||||
const page = window.location.href.split('/');
|
||||
const webhookId = page[page.length - 1];
|
||||
const webhookId = parseInt(page[page.length - 1]);
|
||||
this.downloadWebhook(webhookId);
|
||||
},
|
||||
downloadWebhook: function (id) {
|
||||
|
Reference in New Issue
Block a user