| Summary: | Неправильный формат useragent | ||
|---|---|---|---|
| Product: | Sisyphus | Reporter: | Leonid Znamenok <respublica> |
| Component: | firefox-config-privacy | Assignee: | Alexey Gladkov <legion> |
| Status: | RESOLVED FIXED | QA Contact: | qa-sisyphus |
| Severity: | normal | ||
| Priority: | P5 | CC: | legion, rauty, sbolshakov |
| Version: | unstable | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
firefox-151.0-alt2 -> sisyphus: Thu May 21 2026 Ajrat Makhmutov <rauty@altlinux> 151.0-alt2 - Add support for KDE system proxy settings (Closes: 51648). - Fix User-Agent format in privacy preferences (Closes: 57449). - Switch to a single cumulative patch generated by gear. - Build the source tarball from an upstream git tag. - Update package summary to current upstream wording. |
В файле .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