mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Fix library label
This commit is contained in:
parent
b86e5d1f2e
commit
f9f3c00f53
1 changed files with 1 additions and 1 deletions
|
@ -356,7 +356,7 @@ class Views(object):
|
|||
etree.SubElement(xml, 'content')
|
||||
|
||||
label = xml.find('label')
|
||||
label.text = str(name) if type(name) == int else name
|
||||
label.text = str(name) if type(name) == int else name.encode('utf-8')
|
||||
|
||||
content = xml.find('content')
|
||||
content.text = view['Media']
|
||||
|
|
Loading…
Reference in a new issue