mirror of
https://github.com/avatao-content/frontend-tutorial-framework
synced 2025-04-03 11:52:40 +00:00
Do not hardcode WebSocket URL
This commit is contained in:
parent
2328162ffc
commit
89cc0fca1c
@ -31,7 +31,7 @@ export class WebSocketService {
|
|||||||
// observer subscribes. This socket is shared with subsequent observers
|
// observer subscribes. This socket is shared with subsequent observers
|
||||||
// and closed when the observer count falls to zero.
|
// and closed when the observer count falls to zero.
|
||||||
this.downlink = jsonWebsocketConnect(
|
this.downlink = jsonWebsocketConnect(
|
||||||
'ws://localhost:4242/ws',
|
'ws://' + window.location.host + '/ws',
|
||||||
this.uplink = new QueueingSubject<object>()
|
this.uplink = new QueueingSubject<object>()
|
||||||
).messages.pipe(
|
).messages.pipe(
|
||||||
map(message => <WSMessage<undefined>> message),
|
map(message => <WSMessage<undefined>> message),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user