Fix S110: log instead of pass in canonical search-query add
This commit is contained in:
parent
bc2432d9f6
commit
ef9af0cab5
1 changed files with 2 additions and 2 deletions
|
|
@ -258,8 +258,8 @@ def run_playlist_discovery_worker(playlists, automation_id=None, deps: PlaylistD
|
|||
for _q in (f"{_cq_artist} {_cq_title}", _cq_title):
|
||||
if _q not in search_queries:
|
||||
search_queries.append(_q)
|
||||
except Exception:
|
||||
pass
|
||||
except Exception as _cq_err:
|
||||
logger.debug("canonical search-query add failed: %s", _cq_err)
|
||||
|
||||
# Step 3: Search and score
|
||||
best_match = None
|
||||
|
|
|
|||
Loading…
Reference in a new issue