mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-24 17:56: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 has password
|
||||||
if user['HasPassword'] == True:
|
if user['HasPassword'] == True:
|
||||||
password = dialog.input(
|
password = dialog.input(
|
||||||
heading="%s %s" % (lang(33008), username),
|
heading="%s %s" % (lang(33008), username.decode('utf-8')),
|
||||||
option=xbmcgui.ALPHANUM_HIDE_INPUT)
|
option=xbmcgui.ALPHANUM_HIDE_INPUT)
|
||||||
# If password dialog is cancelled
|
# If password dialog is cancelled
|
||||||
if not password:
|
if not password:
|
||||||
|
|
Loading…
Reference in a new issue