diff options
Diffstat (limited to 'src/components/services')
-rw-r--r-- | src/components/services/AdGuardHome.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/services/AdGuardHome.vue b/src/components/services/AdGuardHome.vue index 9238060..19a2f7d 100644 --- a/src/components/services/AdGuardHome.vue +++ b/src/components/services/AdGuardHome.vue | |||
@@ -53,9 +53,7 @@ export default { | |||
53 | fetchStatus: async function () { | 53 | fetchStatus: async function () { |
54 | this.status = await fetch(`${this.item.url}/control/status`, { | 54 | this.status = await fetch(`${this.item.url}/control/status`, { |
55 | credentials: "include", | 55 | credentials: "include", |
56 | }).then( | 56 | }).then((response) => response.json()); |
57 | (response) => response.json() | ||
58 | ); | ||
59 | }, | 57 | }, |
60 | }, | 58 | }, |
61 | }; | 59 | }; |