1
Fork 0

add chromeos back :3

This commit is contained in:
Ashley 2023-12-01 12:59:25 +00:00
parent 1af4edaf18
commit 89850cb02c

View file

@ -24,25 +24,12 @@ function init(app, config, rendertemplate) {
initlog("wait a few mins... pt on timeout rn");
function isChromeOS(userAgent) {
return userAgent.includes('CrOS');
}
app.get("/*", function (req, res, next) {
if (didstart) return next();
// Middleware to handle the Chrome OS check
function checkChromeOS(req, res, next) {
if (isChromeOS(req.headers['user-agent'])) {
res.status(403).send('Forbidden for Chrome OS');
} else {
next();
}
}
return rendertemplate(res, req, "timeout.ejs");
});
// Your existing route with the Chrome OS check
app.get("/*", checkChromeOS, (req, res, next) => {
if (didstart) return next();
return rendertemplate(res, req, "timeout.ejs");
});
setTimeout(function () {
didstart = true;