From 1a345a40362a8f426a5b813c15805919180bd82a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 Jul 2024 11:39:00 +0200 Subject: [PATCH] Removed the `ignore_https_errors` option when launching the Playwright browser. --- aider/scrape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/scrape.py b/aider/scrape.py index a9f9ea8a7..252e396ac 100755 --- a/aider/scrape.py +++ b/aider/scrape.py @@ -112,7 +112,7 @@ class Scraper: with sync_playwright() as p: try: - browser = p.chromium.launch(ignore_https_errors=not self.verify_ssl) + browser = p.chromium.launch() except Exception as e: self.playwright_available = False self.print_error(str(e))