diff options
author | Colin <mcclurec@gmail.com> | 2021-08-11 15:35:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 15:35:41 -0700 |
commit | 077be43473ebdb241c6a70e4d06795ca80a591fb (patch) | |
tree | 9a86b832eff7a394547cc1e4c2d0137291f3b3f6 /src/components | |
parent | ecec695272f3e41d66401affea7f6fe5a93d3c28 (diff) | |
download | homer-077be43473ebdb241c6a70e4d06795ca80a591fb.tar.gz homer-077be43473ebdb241c6a70e4d06795ca80a591fb.tar.zst homer-077be43473ebdb241c6a70e4d06795ca80a591fb.zip |
Update AdGuardHome.vue
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/services/AdGuardHome.vue | 4 |
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 | }, |