Skip to content

Commit

Permalink
fix(recurse): prioritize album artist over artist tag
Browse files Browse the repository at this point in the history
  • Loading branch information
desbma committed Oct 25, 2024
1 parent 96e712d commit 6e66fe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sacad/recurse.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def get_file_metadata(audio_filepath):
return

# artist
for key in ("albumartist", "artist", "TPE1", "TPE2", "aART", "\xa9ART"): # ogg/ape, mp3, mp4
for key in ("albumartist", "TPE2", "aART", "artist", "TPE1", "\xa9ART"): # ogg/ape, mp3, mp4
try:
val = mf.get(key, None)
except ValueError:
Expand Down

0 comments on commit 6e66fe3

Please sign in to comment.