1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 04:54:39 -05:00

test this

This commit is contained in:
Ashley //// 2024-02-29 19:52:44 +00:00
parent 57777182c0
commit 13a37b7b69

View file

@ -176,10 +176,13 @@ module.exports = function (app, config, renderTemplate) {
const { fetch } = await import("undici"); const { fetch } = await import("undici");
const search = await fetch( let allResults = [];
`https://search.zeroish.xyz/api.php?q=${query}&p=1&t=0`
); for (let page = 1; page <= 3; page++) {
const web = getJson(await search.text()); 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);
}
if (req.query.lucky === "true") { if (req.query.lucky === "true") {
res.redirect("/im-feeling-lucky?query=" + query); res.redirect("/im-feeling-lucky?query=" + query);
@ -218,7 +221,7 @@ module.exports = function (app, config, renderTemplate) {
let continuation = req.query.continuation || ""; let continuation = req.query.continuation || "";
try { try {
const results = web; const results = allResults;
renderTemplate(res, req, "search-web.ejs", { renderTemplate(res, req, "search-web.ejs", {
j: "", j: "",