mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 13:07:09 +01:00
This commit is contained in:
commit
9f29c36439
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