mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix regression to welcome message
This commit is contained in:
parent
d11cb32802
commit
3d0de5d8b1
1 changed files with 2 additions and 2 deletions
|
@ -236,8 +236,8 @@ class Service(xbmc.Monitor):
|
|||
|
||||
if settings('connectMsg.bool'):
|
||||
|
||||
users = [user for user in (settings('additionalUsers') or "").split(',') if user]
|
||||
users.insert(0, settings('username'))
|
||||
users = [user for user in (settings('additionalUsers') or "").decode('utf-8').split(',') if user]
|
||||
users.insert(0, settings('username').decode('utf-8'))
|
||||
dialog("notification", heading="{emby}", message="%s %s" % (_(33000), ", ".join(users)),
|
||||
icon="{emby}", time=1500, sound=False)
|
||||
|
||||
|
|
Loading…
Reference in a new issue