From b265c1ce07e14de8906156451533dd8d30d3fbb4 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 26 Mar 2026 19:33:18 +0100 Subject: [PATCH] woops --- changedetectionio/content_fetchers/puppeteer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/content_fetchers/puppeteer.py b/changedetectionio/content_fetchers/puppeteer.py index bb2eb8f6..f6dfd014 100644 --- a/changedetectionio/content_fetchers/puppeteer.py +++ b/changedetectionio/content_fetchers/puppeteer.py @@ -442,7 +442,7 @@ class fetcher(Fetcher): if self.status_code != 200 and not ignore_status_codes: screenshot = await capture_full_page(page=self.page, screenshot_format=self.screenshot_format, watch_uuid=watch_uuid, lock_viewport_elements=self.lock_viewport_elements) try: - page_html = await self.page.content() + page_html = await self.page.content except Exception as e: logger.warning(f"Got non-200 status {self.status_code} but failed to fetch page content: {e}") page_html = None