diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-04-23 08:04:07 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-23 08:04:07 +0000 |
| commit | 7342806987aec05c50f12e149683609640ba66a0 (patch) | |
| tree | e14385552d89cdb41fa732db4ec0a82d712a7e57 | |
| parent | ac2b0ffa032e441a4610e3076ae3ea8e20d11adb (diff) | |
| parent | 697dd6c6d3eec85e4703a38cd107800e5f3c8a13 (diff) | |
Merge pull request #1936 from return42/fix-fetch
[fix] ffox useragent: use Windows NT 10.0 and not Windows NT 10
| -rwxr-xr-x | utils/fetch_firefox_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/fetch_firefox_version.py b/utils/fetch_firefox_version.py index ed179585b..722c48229 100755 --- a/utils/fetch_firefox_version.py +++ b/utils/fetch_firefox_version.py @@ -24,7 +24,7 @@ NORMAL_REGEX = re.compile('^[0-9]+\.[0-9](\.[0-9])?$') # useragents = { "versions": (), - "os": ('Windows NT 10; WOW64', + "os": ('Windows NT 10.0; WOW64', 'X11; Linux x86_64'), "ua": "Mozilla/5.0 ({os}; rv:{version}) Gecko/20100101 Firefox/{version}" } |