We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
outdated sys req page
visit https://www.mozilla.org/en-US/firefox/all/desktop-esr/ click "Check the system requirements".
should redirect to https://www.mozilla.org/en-US/firefox/128.4.0/system-requirements/
What should happen?
redirects to https://www.mozilla.org/en-US/firefox/115.17.0/system-requirements/
What happened.
What browser and operating system are you using?
Firefox, Win 10 22H2
The text was updated successfully, but these errors were encountered:
(browser should detect that user agent is Win 10 19045 (22H2) by using either AJAX Requests or apparently with such a script? see below )
const express = require('express'); const app = express(); app.use(express.json()); app.post('/os-info', (req, res) => { const { osBuild } = req.body; // Expecting osBuild in the request body console.log(`Received OS Build: ${osBuild}`); res.send('OS Build received'); }); app.listen(3000, () => { console.log('Server running on port 3000'); });
Sorry, something went wrong.
No branches or pull requests
Description
outdated sys req page
Steps to reproduce
visit https://www.mozilla.org/en-US/firefox/all/desktop-esr/
click "Check the system requirements".
Expected result
should redirect to https://www.mozilla.org/en-US/firefox/128.4.0/system-requirements/
What should happen?
Actual result
redirects to https://www.mozilla.org/en-US/firefox/115.17.0/system-requirements/
What happened.
Environment
What browser and operating system are you using?
Firefox, Win 10 22H2
The text was updated successfully, but these errors were encountered: