Reenable showing of academic cover in case no cover was found from scholary

This commit is contained in:
Ozzie Isaacs 2022-02-12 12:32:35 +01:00
parent 86b621e768
commit ba23ada1fe
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class scholar(Metadata):
scholar_gen = itertools.islice(scholarly.search_pubs(query), 10)
for result in scholar_gen:
match = self._parse_search_result(
result=result, generic_cover=generic_cover, locale=locale
result=result, generic_cover="", locale=locale
)
val.append(match)
return val