mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
also prefix the label
This commit is contained in:
parent
5ec53e0326
commit
c2c5743611
1 changed files with 1 additions and 1 deletions
|
@ -1061,7 +1061,7 @@ class WriteKodiDB():
|
|||
xbmcvfs.mkdir(libraryPath)
|
||||
nodefile = os.path.join(libraryPath, "index.xml")
|
||||
root = Element("node", {"order":"1"})
|
||||
SubElement(root, "label").text = tagname
|
||||
SubElement(root, "label").text = "Emby - " + tagname
|
||||
SubElement(root, "icon").text = "DefaultMovies.png"
|
||||
try:
|
||||
ET.ElementTree(root).write(nodefile, xml_declaration=True)
|
||||
|
|
Loading…
Reference in a new issue