mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix adduser
Verify if server is online before proceeding. To make process more robust, later.
This commit is contained in:
parent
1cdfeefa30
commit
071a4bde9b
1 changed files with 3 additions and 0 deletions
|
@ -255,6 +255,9 @@ def deleteItem():
|
||||||
##### ADD ADDITIONAL USERS #####
|
##### ADD ADDITIONAL USERS #####
|
||||||
def addUser():
|
def addUser():
|
||||||
|
|
||||||
|
if window('emby_online') != "true":
|
||||||
|
return
|
||||||
|
|
||||||
doUtils = downloadutils.DownloadUtils()
|
doUtils = downloadutils.DownloadUtils()
|
||||||
art = artwork.Artwork()
|
art = artwork.Artwork()
|
||||||
clientInfo = clientinfo.ClientInfo()
|
clientInfo = clientinfo.ClientInfo()
|
||||||
|
|
Loading…
Reference in a new issue