mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +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 #####
|
||||
def addUser():
|
||||
|
||||
if window('emby_online') != "true":
|
||||
return
|
||||
|
||||
doUtils = downloadutils.DownloadUtils()
|
||||
art = artwork.Artwork()
|
||||
clientInfo = clientinfo.ClientInfo()
|
||||
|
|
Loading…
Reference in a new issue