mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
prevent different cased featured artist names.
remove "/" as artist separator
This commit is contained in:
+1
-1
@@ -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]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user