diff --git a/.github/workflows/test-only.yml b/.github/workflows/test-only.yml index 0b0bb5a7..08a3f944 100644 --- a/.github/workflows/test-only.yml +++ b/.github/workflows/test-only.yml @@ -29,7 +29,7 @@ jobs: docker network create changedet-network # Selenium+browserless - docker run --network changedet-network -d --hostname selenium -p 4444:4444 --rm --shm-size="2g" selenium/standalone-chrome:4.14.1 + docker run --network changedet-network -d --hostname selenium -p 4444:4444 --rm --shm-size="2g" selenium/standalone-chrome:4 docker run --network changedet-network -d --hostname browserless -e "FUNCTION_BUILT_INS=[\"fs\",\"crypto\"]" -e "DEFAULT_LAUNCH_ARGS=[\"--window-size=1920,1080\"]" --rm -p 3000:3000 --shm-size="2g" browserless/chrome:1.60-chrome-stable - name: Build changedetection.io container for testing diff --git a/changedetectionio/content_fetcher.py b/changedetectionio/content_fetcher.py index 2243567f..c17419af 100644 --- a/changedetectionio/content_fetcher.py +++ b/changedetectionio/content_fetcher.py @@ -333,9 +333,8 @@ class base_html_playwright(Fetcher): # Remove username/password if it exists in the URL or you will receive "ERR_NO_SUPPORTED_PROXIES" error # Actual authentication handled by Puppeteer/node o = urlparse(self.proxy.get('server')) - # Remove scheme, socks5:// doesnt always work and it will autodetect anyway - proxy_url = urllib.parse.quote(o._replace(netloc="{}:{}".format(o.hostname, o.port)).geturl().replace(f"{o.scheme}://", '', 1)) - browserless_function_url = f"{browserless_function_url}&--proxy-server={proxy_url}&dumpio=true" + proxy_url = urllib.parse.quote(o._replace(netloc="{}:{}".format(o.hostname, o.port)).geturl()) + browserless_function_url = f"{browserless_function_url}&--proxy-server={proxy_url}" try: amp = '&' if '?' in browserless_function_url else '?' diff --git a/changedetectionio/templates/edit.html b/changedetectionio/templates/edit.html index 54733d85..270cdbce 100644 --- a/changedetectionio/templates/edit.html +++ b/changedetectionio/templates/edit.html @@ -455,15 +455,15 @@ Unavailable") }} Check count - {{ watch.check_count }} + {{ "{:,}".format( watch.check_count) }} Consecutive filter failures - {{ watch.consecutive_filter_failures }} + {{ "{:,}".format( watch.consecutive_filter_failures) }} History length - {{ watch.history|length }} + {{ "{:,}".format(watch.history|length) }} Last fetch time diff --git a/docker-compose.yml b/docker-compose.yml index 50d084f5..a6b927de 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -68,7 +68,7 @@ services: # browser-chrome: # hostname: browser-chrome -# image: selenium/standalone-chrome-debug:3.141.59 +# image: selenium/standalone-chrome:4 # environment: # - VNC_NO_PASSWORD=1 # - SCREEN_WIDTH=1920