mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:18:26 +01:00
change the url lol
This commit is contained in:
parent
13a37b7b69
commit
bdec2c7517
1 changed files with 5 additions and 8 deletions
|
@ -176,13 +176,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
const { fetch } = await import("undici");
|
||||
|
||||
let allResults = [];
|
||||
|
||||
for (let page = 1; page <= 3; page++) {
|
||||
const search = await fetch(`https://search.zeroish.xyz/api.php?q=${query}&p=${page}&t=0`);
|
||||
const results = await search.json();
|
||||
allResults = allResults.concat(results);
|
||||
}
|
||||
const search = await fetch(
|
||||
`https://librex.uk.to/api.php?q=${query}&p=1&t=0`
|
||||
);
|
||||
const web = getJson(await search.text());
|
||||
|
||||
if (req.query.lucky === "true") {
|
||||
res.redirect("/im-feeling-lucky?query=" + query);
|
||||
|
@ -221,7 +218,7 @@ module.exports = function (app, config, renderTemplate) {
|
|||
let continuation = req.query.continuation || "";
|
||||
|
||||
try {
|
||||
const results = allResults;
|
||||
const results = web;
|
||||
|
||||
renderTemplate(res, req, "search-web.ejs", {
|
||||
j: "",
|
||||
|
|
Loading…
Reference in a new issue