mirror of
https://github.com/beetbox/beets.git
synced 2025-12-12 11:36:27 +01:00
Fix missing keep_in_artist option in ftintitle
The newly introduced option to keep the feat. artist in the artist field when importing with the ftintitle plugin was not passed in one function.
This commit is contained in:
parent
cd360b6a99
commit
218cda0401
1 changed files with 2 additions and 1 deletions
|
|
@ -117,9 +117,10 @@ class FtInTitlePlugin(plugins.BeetsPlugin):
|
|||
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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue