Skip to content
This repository was archived by the owner on May 26, 2023. It is now read-only.

Commit 4d24d5b

Browse files
authored
Merge pull request #159 from ExpDev07/dev
Bugfix
2 parents 36a81ae + 33044b6 commit 4d24d5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/Pages/Map/Index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ export default {
8787
},
8888
hostname(isSocket) {
8989
if (isSocket) {
90-
return this.isDevelopment ? 'ws://' + window.location.hostname + ':8080/' : 'wss://' + window.location.hostname + ':8443/';
90+
return this.isDevelopment ? 'ws://' + window.location.hostname + ':8080/' : 'wss://' + window.location.hostname + ':8443';
9191
} else {
92-
return this.isDevelopment ? 'http://' + window.location.hostname + ':8080/' : 'https://' + window.location.hostname + ':8443/';
92+
return this.isDevelopment ? 'http://' + window.location.hostname + ':8080/' : 'https://' + window.location.hostname + ':8443';
9393
}
9494
},
9595
async doMapRefresh(server) {

0 commit comments

Comments
 (0)