mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-29 12:26:12 +00:00
Fix encoding error
This commit is contained in:
parent
8e9efe9734
commit
c40aa46b64
2 changed files with 5 additions and 2 deletions
|
@ -383,7 +383,8 @@ class UserClient(threading.Thread):
|
|||
|
||||
if accessToken is not None:
|
||||
self.currUser = username
|
||||
dialog.notification("Emby for Kodi", "%s %s!" % (lang(33000), self.currUser), 1)
|
||||
dialog.notification("Emby for Kodi",
|
||||
"%s %s!" % (lang(33000), self.currUser.decode('utf-8')))
|
||||
userId = result['User']['Id']
|
||||
settings('accessToken', value=accessToken)
|
||||
settings('userId%s' % username, value=userId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue