Dima преди 1 година
родител
ревизия
d4452c534e
променени са 3 файла, в които са добавени 6 реда и са изтрити 2 реда
  1. 0 0
      web/public/assets/index-a1413657.js
  2. 1 1
      web/public/index.html
  3. 5 1
      web/src/client/client.js

Файловите разлики са ограничени, защото са твърде много
+ 0 - 0
web/public/assets/index-a1413657.js


+ 1 - 1
web/public/index.html

@@ -6,7 +6,7 @@
     <title>Homethings</title>
     <link rel="icon" href="/assets/favicon-ef41fc5b.ico">
     
-  <script type="module" crossorigin src="/assets/index-7dfe232a.js"></script>
+  <script type="module" crossorigin src="/assets/index-a1413657.js"></script>
   <link rel="stylesheet" href="/assets/index-7639778d.css">
 </head>
 <body>

+ 5 - 1
web/src/client/client.js

@@ -56,7 +56,11 @@ export const routeUpdateNotification = "/api/v1/things/notifications/{thingId}"
 export const routeDeleteNotification = "/api/v1/things/notifications/{thingId}"
 
 export function getHost() {
-    return window.location.protocol + "//" + window.location.hostname + ":" + serverPort;
+    if (window.location.hostname === "localhost") {
+        return window.location.protocol + "//" + window.location.hostname + ":" + serverPort;
+    }
+
+    return window.location.protocol + "//" + window.location.hostname;
 }
 
 export function jsonRequest(method, url, data) {

Някои файлове не бяха показани, защото твърде много файлове са промени