1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-02 17:40:18 +02:00

Merge pull request #1936 from return42/fix-fetch

[fix] ffox useragent: use Windows NT 10.0 and not Windows NT 10
This commit is contained in:
Markus Heiser 2020-04-23 08:04:07 +00:00 committed by GitHub
commit 7342806987
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ NORMAL_REGEX = re.compile('^[0-9]+\.[0-9](\.[0-9])?$')
# #
useragents = { useragents = {
"versions": (), "versions": (),
"os": ('Windows NT 10; WOW64', "os": ('Windows NT 10.0; WOW64',
'X11; Linux x86_64'), 'X11; Linux x86_64'),
"ua": "Mozilla/5.0 ({os}; rv:{version}) Gecko/20100101 Firefox/{version}" "ua": "Mozilla/5.0 ({os}; rv:{version}) Gecko/20100101 Firefox/{version}"
} }