]> git.immae.eu Git - github/bastienwirtz/homer.git/commitdiff
Fixed 'method' not defaulting to HEAD request in Ping functionality
authorSylwester Wróblewski <sylwek.wroblewski@gmail.com>
Sat, 15 Oct 2022 15:16:37 +0000 (17:16 +0200)
committerBastien Wirtz <bastien.wirtz@gmail.com>
Sun, 16 Oct 2022 09:06:34 +0000 (11:06 +0200)
src/components/services/Ping.vue

index 571c5adbdd392d3799d09fc58b549021e9f3b731..07bc0537fc8bfda907c02363f372d53601a94f63 100644 (file)
@@ -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`);