From 956f38a5dc6b86ccb38c8ecdb3c625d3eb565ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sylwester=20Wr=C3=B3blewski?= Date: Sat, 15 Oct 2022 17:16:37 +0200 Subject: Fixed 'method' not defaulting to HEAD request in Ping functionality --- src/components/services/Ping.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/services/Ping.vue b/src/components/services/Ping.vue index 571c5ad..07bc053 100644 --- a/src/components/services/Ping.vue +++ b/src/components/services/Ping.vue @@ -29,7 +29,7 @@ export default { }, methods: { fetchStatus: async function () { - const method = typeof this.item.method === 'string' ? this.item.method.toUpperCase() : 'unknown'; + const method = typeof this.item.method === 'string' ? this.item.method.toUpperCase() : 'HEAD'; if (!['GET', 'HEAD', 'OPTION'].includes(method)) { console.error(`Ping: ${method} is not a supported HTTP method`); -- cgit v1.2.3