aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorColin <mcclurec@gmail.com>2021-08-11 15:35:41 -0700
committerGitHub <noreply@github.com>2021-08-11 15:35:41 -0700
commit077be43473ebdb241c6a70e4d06795ca80a591fb (patch)
tree9a86b832eff7a394547cc1e4c2d0137291f3b3f6
parentecec695272f3e41d66401affea7f6fe5a93d3c28 (diff)
downloadhomer-077be43473ebdb241c6a70e4d06795ca80a591fb.tar.gz
homer-077be43473ebdb241c6a70e4d06795ca80a591fb.tar.zst
homer-077be43473ebdb241c6a70e4d06795ca80a591fb.zip
Update AdGuardHome.vue
-rw-r--r--src/components/services/AdGuardHome.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/services/AdGuardHome.vue b/src/components/services/AdGuardHome.vue
index d4a2b89..bf5caa9 100644
--- a/src/components/services/AdGuardHome.vue
+++ b/src/components/services/AdGuardHome.vue
@@ -51,7 +51,9 @@ export default {
51 }, 51 },
52 methods: { 52 methods: {
53 fetchStatus: async function () { 53 fetchStatus: async function () {
54 this.status = await fetch(`${this.item.url}/control/status`).then( 54 this.status = await fetch(`${this.item.url}/control/status`{
55 credentials: 'include',
56 }).then(
55 (response) => response.json() 57 (response) => response.json()
56 ); 58 );
57 }, 59 },