mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix unicode
This commit is contained in:
parent
7f9b0b879c
commit
ab467e36f0
1 changed files with 1 additions and 1 deletions
|
@ -349,7 +349,7 @@ class UserClient(threading.Thread):
|
|||
# If user has password
|
||||
if user['HasPassword'] == True:
|
||||
password = dialog.input(
|
||||
heading="%s %s" % (lang(33008), username),
|
||||
heading="%s %s" % (lang(33008), username.decode('utf-8')),
|
||||
option=xbmcgui.ALPHANUM_HIDE_INPUT)
|
||||
# If password dialog is cancelled
|
||||
if not password:
|
||||
|
|
Loading…
Reference in a new issue