fix display of quotation marks in video lists

This commit is contained in:
bassdart 2019-02-02 16:58:11 +01:00
parent 92415d39d4
commit 954294be88

View file

@ -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']