mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Update websocket url
For reverse proxy
This commit is contained in:
parent
299a0bd8f9
commit
030e557829
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ class WebSocketClient(threading.Thread):
|
|||
else:
|
||||
server = server.replace('http', "ws")
|
||||
|
||||
websocket_url = "%s?api_key=%s&deviceId=%s" % (server, token, self.device_id)
|
||||
websocket_url = "%s/embywebsocket?api_key=%s&deviceId=%s" % (server, token, self.device_id)
|
||||
log.info("websocket url: %s", websocket_url)
|
||||
|
||||
self._client = websocket.WebSocketApp(websocket_url,
|
||||
|
|
Loading…
Reference in a new issue