From 218cda0401f644ddb731da94e965e3c9f62d1902 Mon Sep 17 00:00:00 2001 From: Karl Besser Date: Fri, 20 Sep 2024 20:47:10 -0400 Subject: [PATCH] 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. --- beetsplug/ftintitle.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beetsplug/ftintitle.py b/beetsplug/ftintitle.py index 8936f049b..60d6c287b 100644 --- a/beetsplug/ftintitle.py +++ b/beetsplug/ftintitle.py @@ -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):