mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-18 14:16:13 +00:00
Handle revoked token
This commit is contained in:
parent
6cb5fd12a1
commit
4b9cae3f2f
2 changed files with 5 additions and 1 deletions
|
@ -43,7 +43,10 @@ class PlaybackUtils():
|
|||
userid = WINDOW.getProperty('userId%s' % username)
|
||||
server = WINDOW.getProperty('server%s' % username)
|
||||
|
||||
id = result["Id"]
|
||||
try:
|
||||
id = result["Id"]
|
||||
except:
|
||||
return
|
||||
|
||||
userData = result['UserData']
|
||||
resume_result = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue