prevent different cased featured artist names.

remove "/" as artist separator
This commit is contained in:
geoffrey45
2023-01-25 09:41:07 +03:00
parent af4221e0c7
commit 5b71b95d66
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -260,7 +260,7 @@ def is_windows():
def split_artists(src: str):
artists = re.split(r"\s*[&,;/]\s*", src)
artists = re.split(r"\s*[&,;]\s*", src)
return [a.strip() for a in artists]