mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 03:28:35 +01:00
add query
This commit is contained in:
parent
042c450af5
commit
acc2bbbf60
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,6 @@ app.get("/api/search", async (req, res) => {
|
|||
return res.redirect("/");
|
||||
}
|
||||
return res.redirect(`/search?query=${query}`);
|
||||
|
||||
});
|
||||
app.get("/search", async (req, res) => {
|
||||
const { toJson } = require("xml2json");
|
||||
|
@ -114,6 +113,7 @@ app.get("/search", async (req, res) => {
|
|||
}
|
||||
renderTemplate(res, req, "search.ejs", {
|
||||
j: j,
|
||||
q:query
|
||||
});
|
||||
});
|
||||
app.get("/css/:id", (req, res) => {
|
||||
|
|
Loading…
Reference in a new issue