Skip to content
New issue

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

https://www.mozilla.org/en-US/firefox/organizations/system-requirements/ links to very old releasenotes #15411

Open
D4n2021 opened this issue Oct 30, 2024 · 1 comment
Labels
Bug 🐛 Something's not working the way it should

Comments

@D4n2021
Copy link

D4n2021 commented Oct 30, 2024

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

@D4n2021 D4n2021 added the Bug 🐛 Something's not working the way it should label Oct 30, 2024
@D4n2021
Copy link
Author

D4n2021 commented Oct 30, 2024

(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');
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug 🐛 Something's not working the way it should
Projects
None yet
Development

No branches or pull requests

1 participant