1
Fork 0

re-add support for opera FOR NOW

This commit is contained in:
Ashley 2023-03-10 17:34:11 +00:00
parent b7d9559b1e
commit 52aae41ae7

View file

@ -9,18 +9,6 @@ function init(app, config, rendertemplate) {
app.get("/*", function (req, res, next) {
if (didstart) return next();
const userAgent = req.useragent.source;
if (
userAgent.includes("Opera") ||
userAgent.includes("OPR") ||
userAgent.includes("OPRGX")
) {
// Browser agent is Opera, Opera GX or OPRGX
res.redirect("https://www.mozilla.org/en-US/firefox/all/");
} else {
// Browser agent is not Opera, Opera GX or OPRGX
next();
}
return rendertemplate(res, req, "timeout.ejs");
});