mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
Fixing endpoint.
This commit is contained in:
parent
e24641dccb
commit
a705e81c0c
1 changed files with 1 additions and 1 deletions
|
@ -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`;
|
||||
|
|
Loading…
Reference in a new issue