mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-23 04:57:48 +01:00
re-add support for opera FOR NOW
This commit is contained in:
parent
a68bb6a2cf
commit
4ac3dfafd9
1 changed files with 0 additions and 12 deletions
|
@ -9,18 +9,6 @@ function init(app, config, rendertemplate) {
|
||||||
|
|
||||||
app.get("/*", function (req, res, next) {
|
app.get("/*", function (req, res, next) {
|
||||||
if (didstart) return 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");
|
return rendertemplate(res, req, "timeout.ejs");
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue