Fix adduser

Verify if server is online before proceeding. To make process more
robust, later.
This commit is contained in:
angelblue05 2016-10-20 01:28:51 -05:00
parent 1cdfeefa30
commit 071a4bde9b
1 changed files with 3 additions and 0 deletions

View File

@ -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()