From 071a4bde9bada0225baa7ed21e2a667f17685c12 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Thu, 20 Oct 2016 01:28:51 -0500 Subject: [PATCH] Fix adduser Verify if server is online before proceeding. To make process more robust, later. --- resources/lib/entrypoint.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/lib/entrypoint.py b/resources/lib/entrypoint.py index f20b1a5f..d7903871 100644 --- a/resources/lib/entrypoint.py +++ b/resources/lib/entrypoint.py @@ -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()