aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/services/Ping.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/services/Ping.vue')
-rw-r--r--src/components/services/Ping.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/services/Ping.vue b/src/components/services/Ping.vue
index a9114a8..9684419 100644
--- a/src/components/services/Ping.vue
+++ b/src/components/services/Ping.vue
@@ -53,8 +53,8 @@ export default {
53 fetchStatus: async function () { 53 fetchStatus: async function () {
54 const url = `${this.item.url}`; 54 const url = `${this.item.url}`;
55 this.api.status = await fetch(url) 55 this.api.status = await fetch(url)
56 .then((response) => "enabled") 56 .then(() => "enabled")
57 .catch((e) => "disabled"); 57 .catch(() => "disabled");
58 }, 58 },
59 }, 59 },
60}; 60};