Skip to content

Commit

Permalink
Fix missing keep_in_artist option in ftintitle plugin (introduced in #…
Browse files Browse the repository at this point in the history
  • Loading branch information
JOJ0 authored Sep 21, 2024
2 parents cd360b6 + 218cda0 commit 9f29c36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion beetsplug/ftintitle.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@ def func(lib, opts, args):
def imported(self, session, task):
"""Import hook for moving featuring artist automatically."""
drop_feat = self.config["drop"].get(bool)
keep_in_artist_field = self.config["keep_in_artist"].get(bool)

for item in task.imported_items():
self.ft_in_title(item, drop_feat)
self.ft_in_title(item, drop_feat, keep_in_artist_field)
item.store()

def update_metadata(self, item, feat_part, drop_feat, keep_in_artist_field):
Expand Down

0 comments on commit 9f29c36

Please sign in to comment.