]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Update Sonarr.vue 291/head
authorColin <mcclurec@gmail.com>
Wed, 22 Sep 2021 17:47:10 +0000 (10:47 -0700)
committerGitHub <noreply@github.com>
Wed, 22 Sep 2021 17:47:10 +0000 (10:47 -0700)
src/components/services/Sonarr.vue

index 4d94c08e5c2d7eb32d3fbb6bc11c129f5bdf6df8..0270255995bfe9e35625d95c0aef81daf39c4053 100644 (file)
@@ -94,7 +94,9 @@ export default {
           console.error(e);
           this.serverError = true;
         });
-      fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`)
+      fetch(`${this.item.url}/api/queue?apikey=${this.item.apikey}`, {
+        credentials: "include",
+      })
         .then((response) => {
           if (response.status != 200) {
             throw new Error(response.statusText);