fix display of quotation marks in video lists
This commit is contained in:
parent
92415d39d4
commit
954294be88
1 changed files with 2 additions and 0 deletions
|
@ -968,9 +968,11 @@ def addVideo(entry, mycount="playcount"):
|
|||
artists = entry['artists']
|
||||
director = entry['director']
|
||||
title = entry['title']
|
||||
title = title.replace(""", '"')
|
||||
if "false" in entry['official'].lower() and "true" in showunoffintitle:
|
||||
title = (title + ' (vid by ' + director + ')')
|
||||
tracktitle = entry['tracktitle']
|
||||
tracktitle = tracktitle.replace(""", '"')
|
||||
style = entry['style']
|
||||
if mycount == "pcount":
|
||||
playcount = entry['pcount']
|
||||
|
|
Loading…
Reference in a new issue