mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Added a welcome message
Instead of server online, added a welcome message with the name of the user.
This commit is contained in:
parent
c36b896f99
commit
3954c50329
1 changed files with 8 additions and 2 deletions
|
@ -36,6 +36,7 @@ class Service():
|
|||
WINDOW = xbmcgui.Window(10000)
|
||||
|
||||
warn_auth = True
|
||||
welcome_msg = True
|
||||
server_online = True
|
||||
|
||||
def __init__(self, *args ):
|
||||
|
@ -90,7 +91,12 @@ class Service():
|
|||
if WINDOW.getProperty('Server_online') == "true":
|
||||
# Server is online
|
||||
if (user.currUser != None) and (user.HasAccess == True):
|
||||
|
||||
if self.welcome_msg:
|
||||
# Reset authentication warnings
|
||||
self.welcome_msg = False
|
||||
self.warn_auth = True
|
||||
xbmcgui.Dialog().notification("Emby server", "Welcome %s!" % user.currUser, sound=False)
|
||||
|
||||
# Correctly launch the websocket, if user manually launches the add-on
|
||||
if (self.newWebSocketThread == None):
|
||||
|
|
Loading…
Reference in a new issue