mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-17 00:24:50 -04:00
Don't index title when searching for artist #189
This commit is contained in:
parent
cdacf64421
commit
5c654ed612
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ class RipCore(list):
|
||||||
logger.debug("Number of results: %d", len(items))
|
logger.debug("Number of results: %d", len(items))
|
||||||
|
|
||||||
for i, item in enumerate(items):
|
for i, item in enumerate(items):
|
||||||
logger.debug(item["title"])
|
logger.debug(item)
|
||||||
yield MEDIA_CLASS[media_type].from_api(item, client) # type: ignore
|
yield MEDIA_CLASS[media_type].from_api(item, client) # type: ignore
|
||||||
if i >= limit - 1:
|
if i >= limit - 1:
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue