aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services/Sonarr.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/services/Sonarr.vue')
-rw-r--r--src/components/services/Sonarr.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/services/Sonarr.vue b/src/components/services/Sonarr.vue
index 3460067..7851b6b 100644
--- a/src/components/services/Sonarr.vue
+++ b/src/components/services/Sonarr.vue
@@ -70,7 +70,7 @@ export default {
70 }, 70 },
71 methods: { 71 methods: {
72 fetchConfig: function () { 72 fetchConfig: function () {
73 fetch(`${this.item.url}/api/health?apiKey=${this.item.apikey}`) 73 fetch(`${this.item.url}/api/health?apikey=${this.item.apikey}`)
74 .then((response) => { 74 .then((response) => {
75 if (response.status != 200) { 75 if (response.status != 200) {
76 throw new Error(response.statusText); 76 throw new Error(response.statusText);
@@ -92,7 +92,7 @@ export default {
92 console.error(e); 92 console.error(e);
93 this.serverError = true; 93 this.serverError = true;
94 }); 94 });
95 fetch(`${this.item.url}/api/queue?apiKey=${this.item.apikey}`) 95 fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`)
96 .then((response) => { 96 .then((response) => {
97 if (response.status != 200) { 97 if (response.status != 200) {
98 throw new Error(response.statusText); 98 throw new Error(response.statusText);