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']
|
artists = entry['artists']
|
||||||
director = entry['director']
|
director = entry['director']
|
||||||
title = entry['title']
|
title = entry['title']
|
||||||
|
title = title.replace(""", '"')
|
||||||
if "false" in entry['official'].lower() and "true" in showunoffintitle:
|
if "false" in entry['official'].lower() and "true" in showunoffintitle:
|
||||||
title = (title + ' (vid by ' + director + ')')
|
title = (title + ' (vid by ' + director + ')')
|
||||||
tracktitle = entry['tracktitle']
|
tracktitle = entry['tracktitle']
|
||||||
|
tracktitle = tracktitle.replace(""", '"')
|
||||||
style = entry['style']
|
style = entry['style']
|
||||||
if mycount == "pcount":
|
if mycount == "pcount":
|
||||||
playcount = entry['pcount']
|
playcount = entry['pcount']
|
||||||
|
|
Loading…
Reference in a new issue