mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-24 00:41:38 +00:00
Fix progress report
Silent RefreshProgress in websocket
This commit is contained in:
parent
05483c7406
commit
d5f9b76020
2 changed files with 10 additions and 4 deletions
|
@ -82,6 +82,11 @@ class WSClient(threading.Thread):
|
|||
message = json.loads(message)
|
||||
data = message.get('Data', {})
|
||||
|
||||
if message['MessageType'] in ('RefreshProgress'):
|
||||
LOG.debug("Ignoring %s", message)
|
||||
|
||||
return
|
||||
|
||||
if not self.client['config/app.default']:
|
||||
data['ServerId'] = self.client['auth/server-id']
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue