fix(httpheader): use same Accept-Language as Brave (#574)

Closes https://github.com/ooni/probe/issues/1792
This commit is contained in:
Simone Basso 2021-11-05 11:31:10 +01:00 committed by GitHub
parent 60cfa68b5a
commit dad8db4a36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,5 +2,5 @@ package httpheader
// AcceptLanguage returns the Accept-Language header used for measuring. // AcceptLanguage returns the Accept-Language header used for measuring.
func AcceptLanguage() string { func AcceptLanguage() string {
return "en-US;q=0.8,en;q=0.5" return "en-US,en;q=0.9"
} }