We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 34ca56d + f650031 commit c028948Copy full SHA for c028948
src/tauon/t_modules/t_extra.py
@@ -886,7 +886,7 @@ def filename_to_metadata(filename: str) -> tuple[str, str]:
886
def get_artist_strip_feat(track_object: TrackClass) -> str:
887
artist_name = track_object.artist #.lower()
888
if track_object.album_artist:
889
- if "feat." in artist_name or "pres." in artist_name or ", " in artist_name or "; " in artist_name or not artist_name:
+ if "feat." in artist_name or "pres." in artist_name or ", " in artist_name or "; " in artist_name or "& " in artist_name or "ft. " in artist_name or not artist_name:
890
if track_object.album_artist.lower() != "va" and \
891
track_object.album_artist.lower() != "various artists":
892
artist_name = track_object.album_artist
0 commit comments