mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Stop throwing errors during playback reporting
This commit is contained in:
parent
293dc7a768
commit
405a0038a3
1 changed files with 3 additions and 0 deletions
|
@ -173,6 +173,9 @@ class HTTP(object):
|
|||
return clean_none_dict_values(response)
|
||||
except ValueError:
|
||||
return
|
||||
except TypeError:
|
||||
# Empty json
|
||||
return
|
||||
|
||||
def _request(self, data):
|
||||
|
||||
|
|
Loading…
Reference in a new issue