mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Correct encoding
Everything xbmc returns is already in utf-8
This commit is contained in:
parent
2011f5671a
commit
ee414472e0
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ def settings(setting, value=None):
|
|||
def language(stringid):
|
||||
# Central string retrieval
|
||||
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
||||
string = addon.getLocalizedString(stringid).decode("utf-8")
|
||||
string = addon.getLocalizedString(stringid)
|
||||
|
||||
return string
|
||||
|
||||
|
|
Loading…
Reference in a new issue