From 31fea55ee4d22b24da960a5476bafadd4a5d61ac Mon Sep 17 00:00:00 2001 From: weeix Date: Sun, 15 May 2022 03:34:44 +0700 Subject: [PATCH] Fix PLAYWRIGHT_DRIVER_URL default value (cf. #587) (#599) --- changedetectionio/content_fetcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/content_fetcher.py b/changedetectionio/content_fetcher.py index 04276e67..27e24e58 100644 --- a/changedetectionio/content_fetcher.py +++ b/changedetectionio/content_fetcher.py @@ -97,7 +97,7 @@ class base_html_playwright(Fetcher): self.browser_type = os.getenv("PLAYWRIGHT_BROWSER_TYPE", 'chromium').strip('"') self.command_executor = os.getenv( "PLAYWRIGHT_DRIVER_URL", - 'ws://playwright-chrome:3000/playwright' + 'ws://playwright-chrome:3000' ).strip('"') # If any proxy settings are enabled, then we should setup the proxy object