Fixing endpoint.

This commit is contained in:
Dessalines 2019-04-09 07:46:44 -07:00
parent 9407437cf8
commit 0af9e08263

View file

@ -1,2 +1,2 @@
export const endpoint = `${window.location.hostname}:8536`;
export let wsUri = (window.location.protocol=='https:') ? 'wss://' : 'ws://' + endpoint + '/service/ws';
export let wsUri = `${(window.location.protocol=='https:') ? 'wss://' : 'ws://'}${endpoint}/service/ws`;