From 697dd6c6d3eec85e4703a38cd107800e5f3c8a13 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 22 Apr 2020 00:43:42 +0200 Subject: [PATCH] [fix] ffox useragent: use Windows NT 10.0 and not Windows NT 10 This is an addittion to PR #1934: The .0 change really counts on some engines like Bing which seems to allow Windows NT 10.0 but not Windows NT 10. Signed-off-by: Markus Heiser --- utils/fetch_firefox_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/fetch_firefox_version.py b/utils/fetch_firefox_version.py index ed179585..722c4822 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}" }