fix(deps): update dependency recipe-scrapers to v15 (#3955)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2024-07-30 17:48:47 +02:00
committed by GitHub
parent 23c2eab682
commit d7b7dd6c83
3 changed files with 9 additions and 7 deletions

View File

@@ -201,7 +201,7 @@ class RecipeScraperPackage(ABCScraperStrategy):
recipe_html = await self.get_html(self.url)
try:
scraped_schema = scrape_html(recipe_html, org_url=self.url)
scraped_schema = scrape_html(recipe_html, org_url=self.url, supported_only=False)
except (NoSchemaFoundInWildMode, AttributeError):
self.logger.error(f"Recipe Scraper was unable to extract a recipe from {self.url}")
return None