mirror of
https://github.com/beetbox/beets.git
synced 2026-03-26 15:24:05 +01:00
Update beetsplug/lyrics.py
Co-authored-by: Šarūnas Nejus <snejus@protonmail.com>
This commit is contained in:
parent
97a89e919c
commit
131930144b
1 changed files with 2 additions and 3 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue