Skip to content

Commit

Permalink
Merge pull request #604 from tcely/patch-12
Browse files Browse the repository at this point in the history
Use title from DB
  • Loading branch information
meeb authored Dec 26, 2024
2 parents e387098 + 99899aa commit 5774e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tubesync/sync/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,7 @@ def nfoxml(self):
nfo.text = '\n '
# title = media metadata title
title = nfo.makeelement('title', {})
title.text = clean_emoji(str(self.name).strip())
title.text = clean_emoji(self.title)
title.tail = '\n '
nfo.append(title)
# showtitle = source name
Expand Down

0 comments on commit 5774e6d

Please sign in to comment.