Remove tabs from track titles

Reference to https://git.rip/RemixDev/deemix-pyweb/-/issues/17
This commit is contained in:
RemixDev
2021-01-31 20:35:31 +01:00
parent e9434ceeb6
commit 054a4f4fdf
2 changed files with 6 additions and 2 deletions

View File

@ -152,6 +152,10 @@ class Track:
if not self.copyright: self.copyright = albumAPI_gw['COPYRIGHT']
self.parseTrack(trackAPI)
# Remove unwanted charaters in track name
# Example: track/127793
self.title = ' '.join(self.title.split())
# Make sure there is at least one artist
if not len(self.artist['Main']):
self.artist['Main'] = [self.mainArtist['name']]