ftintitle: skip on empty albumartist (#418)

This commit is contained in:
Adrian Sampson 2013-10-15 10:03:15 -07:00
parent 9d0824d71d
commit ed44982f75

View file

@ -78,7 +78,7 @@ def ft_in_title(item):
# artist field does not exactly match the album artist field. In
# that case, we attempt to move the featured artist to the title.
_, featured = split_on_feat(artist)
if featured and albumartist != artist:
if featured and albumartist != artist and albumartist:
ui.print_(displayable_path(item.path))
feat_part = None