Really fix artist detection this time

God dammit
This commit is contained in:
Salt 2020-03-04 04:00:15 -06:00
parent eac3503e90
commit 4c0ff6d447

View File

@ -163,7 +163,7 @@ class BadWitch:
album[in_song] = {}
song = album[in_song]
if in_track is not '': song['track'] = int(in_track)
if auto_artist is not '': song['artist'] = in_artist
if in_artist is not '': song['artist'] = in_artist
if in_source is not '': song['source'] = in_source
# Bail if song is bad
for field in ['track', 'artist', 'source']: