| Summary: | Неправильный формат useragent | ||
|---|---|---|---|
| Product: | Sisyphus | Reporter: | Leonid Znamenok <respublica> |
| Component: | firefox-config-privacy | Assignee: | Alexey Gladkov <legion> |
| Status: | NEW --- | QA Contact: | qa-sisyphus |
| Severity: | normal | ||
| Priority: | P5 | CC: | legion, rauty, sbolshakov |
| Version: | unstable | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
В файле .rpm/firefox-privacy-prefs.js ``` /* Hardcode User Agent */ pref("general.useragent.override", "Mozilla/5.0 (X11; Linux x86_64 rv:@VERSION@) Gecko/20100101 Firefox/@VERSION@"); ``` в секции с системной информацией пропущен разделитель после Linux x86_64. Там должен был быть знак ';'. Корректно было бы: ``` /* Hardcode User Agent */ pref("general.useragent.override", "Mozilla/5.0 (X11; Linux x86_64; rv:@VERSION@) Gecko/20100101 Firefox/@VERSION@"); ``` См: https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/User-Agent/Firefox