update supported audio files in settings.py

+ add win_replace_slash function to format win path strings
+ misc
This commit is contained in:
geoffrey45
2023-01-30 15:59:28 +03:00
parent 93a04ba041
commit 7e15680f26
15 changed files with 268 additions and 96 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ class Track:
if self.artist is not None:
artists = utils.split_artists(self.artist)
featured = utils.extract_featured_artists_from_title(self.title)
featured = utils.parse_feat_from_title(self.title)
original_lower = "-".join([a.lower() for a in artists])
artists.extend([a for a in featured if a.lower() not in original_lower])