mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
fixed small issue in NFO --> writer is named credits in the NFO
This commit is contained in:
parent
6e1727dc78
commit
96833b5ef3
1 changed files with 1 additions and 2 deletions
|
@ -178,9 +178,8 @@ class CreateFiles():
|
|||
SubElement(root, "imdbnumber").text = item
|
||||
|
||||
if people.get("Writer") != None:
|
||||
credits = SubElement(root, "credits")
|
||||
for writer in people.get("Writer"):
|
||||
SubElement(credits, "writer").text = utils.convertEncoding(writer)
|
||||
SubElement(root, "credits").text = utils.convertEncoding(writer)
|
||||
|
||||
if people.get("Director") != None:
|
||||
for director in people.get("Director"):
|
||||
|
|
Loading…
Reference in a new issue