mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:58:28 +01:00
fxi this lol
This commit is contained in:
parent
3ad7aa6f11
commit
43de86922e
1 changed files with 5 additions and 13 deletions
|
@ -162,10 +162,9 @@ module.exports = function (app, config, renderTemplate) {
|
|||
}
|
||||
});
|
||||
|
||||
app.get("/im-feeling-lucky", function (req, res) {
|
||||
app.get("/web", async (req, res) => {
|
||||
const query = req.query.query;
|
||||
|
||||
const search = require("google-it");
|
||||
const tab = req.query.tab;
|
||||
|
||||
const getRandomLinkAndRedirect = (query, res) => {
|
||||
search({ query: `${query}` }).then((results) => {
|
||||
|
@ -189,18 +188,11 @@ module.exports = function (app, config, renderTemplate) {
|
|||
});
|
||||
};
|
||||
|
||||
getRandomLinkAndRedirect(query, res);
|
||||
});
|
||||
|
||||
app.get("/web", async (req, res) => {
|
||||
const query = req.query.query;
|
||||
const tab = req.query.tab;
|
||||
|
||||
const search = require("google-it");
|
||||
|
||||
if (req.query.lucky === 'true') {
|
||||
res.redirect('/im-feeling-lucky?query=' + query)
|
||||
}
|
||||
if (req.query.lucky === "true") {
|
||||
getRandomLinkAndRedirect(query, res);
|
||||
}
|
||||
var uaos = req.useragent.os;
|
||||
var IsOldWindows;
|
||||
|
||||
|
|
Loading…
Reference in a new issue