From 0dd42bd5cc25e9f5a81fdc9c76e731d4633b0aab Mon Sep 17 00:00:00 2001 From: mrl5 <31549762+mrl5@users.noreply.github.com> Date: Mon, 16 Mar 2020 20:44:58 +0100 Subject: [PATCH] OmahaProxy: use endpoint used in official Chromium project (#5) Chromium officialy uses `/json` endpoint https://github.com/chromium/chromium/blob/26d7db41b18fba17766faee123626aaae1b0103d/tools/omahaproxy.py#L21 --- clients/chrome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/chrome.py b/clients/chrome.py index 993608a..029adb9 100644 --- a/clients/chrome.py +++ b/clients/chrome.py @@ -19,7 +19,7 @@ def getEditions(template): template.stable = True #Looking for releases - response = requests.get(url="https://omahaproxy.appspot.com/all.json") + response = requests.get(url="https://omahaproxy.appspot.com/json") data = response.json() #Looking releases