Should fix message title.

This commit is contained in:
James Cole
2024-01-31 07:25:51 +01:00
parent b2449eb726
commit bafe2ece8c
2 changed files with 8 additions and 7 deletions

View File

@@ -277,7 +277,7 @@ export default {
getWebhook() {
this.loading = true;
const page = window.location.href.split('/');
this.id = page[page.length - 1]
this.id = parseInt(page[page.length - 1]);
this.downloadWebhook();
this.downloadWebhookMessages();
},