aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/services')
-rw-r--r--src/components/services/Sonarr.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/services/Sonarr.vue b/src/components/services/Sonarr.vue
index 4d94c08..0270255 100644
--- a/src/components/services/Sonarr.vue
+++ b/src/components/services/Sonarr.vue
@@ -94,7 +94,9 @@ export default {
94 console.error(e); 94 console.error(e);
95 this.serverError = true; 95 this.serverError = true;
96 }); 96 });
97 fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`) 97 fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`, {
98 credentials: "include",
99 })
98 .then((response) => { 100 .then((response) => {
99 if (response.status != 200) { 101 if (response.status != 200) {
100 throw new Error(response.statusText); 102 throw new Error(response.statusText);