Skip to content

Commit

Permalink
Update patcher.py
Browse files Browse the repository at this point in the history
Change the download url since the old one presents a 404 Error
  • Loading branch information
omkmorendha committed Feb 15, 2024
1 parent 783b839 commit 702ff57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion undetected_chromedriver/patcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def fetch_package(self):
download_url = "%s/%s/%s" % (self.url_repo, self.version_full.vstring, zip_name)
else:
zip_name = zip_name.replace("_", "-", 1)
download_url = "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/%s/%s/%s"
download_url = "https://storage.googleapis.com/chrome-for-testing-public/%s/%s/%s"
download_url %= (self.version_full.vstring, self.platform_name, zip_name)

logger.debug("downloading from %s" % download_url)
Expand Down

0 comments on commit 702ff57

Please sign in to comment.