diff --git a/src/components/services/Sonarr.vue b/src/components/services/Sonarr.vue index 7851b6b..4d94c08 100644 --- a/src/components/services/Sonarr.vue +++ b/src/components/services/Sonarr.vue @@ -70,7 +70,9 @@ export default { }, methods: { fetchConfig: function () { - fetch(`${this.item.url}/api/health?apikey=${this.item.apikey}`) + fetch(`${this.item.url}/api/health?apikey=${this.item.apikey}`, { + credentials: "include", + }) .then((response) => { if (response.status != 200) { throw new Error(response.statusText);