Skip to content

Commit

Permalink
Update websocket path
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarlton00 committed Dec 11, 2019
1 parent 4cb8506 commit ab1dcca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jellyfin_kodi/jellyfin/ws_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run(self):
device_id = self.client.config.data['app.device_id']
server = self.client.config.data['auth.server']
server = server.replace('https', "wss") if server.startswith('https') else server.replace('http', "ws")
wsc_url = "%s/embywebsocket?api_key=%s&device_id=%s" % (server, token, device_id)
wsc_url = "%s/socket?api_key=%s&device_id=%s" % (server, token, device_id)

LOG.info("Websocket url: %s", wsc_url)

Expand Down

0 comments on commit ab1dcca

Please sign in to comment.