mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-11-10 18:36:33 +00:00
Remove debug statements
This commit is contained in:
parent
8b06cb8501
commit
6d08537525
1 changed files with 0 additions and 2 deletions
|
|
@ -47,7 +47,6 @@ class WSClient(threading.Thread):
|
||||||
server = server.replace('https', "wss") if server.startswith('https') else server.replace('http', "ws")
|
server = server.replace('https', "wss") if server.startswith('https') else server.replace('http', "ws")
|
||||||
wsc_url = "%s/socket?api_key=%s&device_id=%s" % (server, token, device_id)
|
wsc_url = "%s/socket?api_key=%s&device_id=%s" % (server, token, device_id)
|
||||||
|
|
||||||
#import web_pdb; web_pdb.set_trace()
|
|
||||||
LOG.info("Websocket url: %s", wsc_url)
|
LOG.info("Websocket url: %s", wsc_url)
|
||||||
|
|
||||||
self.wsc = websocket.WebSocketApp(wsc_url,
|
self.wsc = websocket.WebSocketApp(wsc_url,
|
||||||
|
|
@ -72,7 +71,6 @@ class WSClient(threading.Thread):
|
||||||
|
|
||||||
def on_message(self, ws, message):
|
def on_message(self, ws, message):
|
||||||
|
|
||||||
import web_pdb; web_pdb.set_trace()
|
|
||||||
message = json.loads(message)
|
message = json.loads(message)
|
||||||
data = message.get('Data', {})
|
data = message.get('Data', {})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue