From 131930144be50d87e7772f091ef2caaeef8ca3bd Mon Sep 17 00:00:00 2001 From: kelamg Date: Sat, 21 Mar 2026 20:42:11 +0100 Subject: [PATCH] Update beetsplug/lyrics.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Šarūnas Nejus --- beetsplug/lyrics.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/beetsplug/lyrics.py b/beetsplug/lyrics.py index 60e2552dd..90a6b1c70 100644 --- a/beetsplug/lyrics.py +++ b/beetsplug/lyrics.py @@ -1070,9 +1070,8 @@ class LyricsPlugin(LyricsRequestHandler, plugins.BeetsPlugin): if query_str := self.config["auto_ignore"].get(): query, _ = parse_query_string(query_str, Item) else: - query = ( - FalseQuery() - ) # matches nothing, so all items proceed normally + # matches nothing, so all items proceed normally + query = FalseQuery() for item in filterfalse(query.match, task.imported_items()): self.add_item_lyrics(item, False)