mirror of
https://codeberg.org/ashley/poke
synced 2026-03-03 07:43:44 +00:00
fix goober bug
This commit is contained in:
@@ -88,7 +88,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||
});
|
||||
|
||||
app.get("/search", async (req, res) => {
|
||||
const query = req.query.query.replace("ohio", "things to do in ohio");
|
||||
const query = req.query.query ? req.query.query.replace("ohio", "things to do in ohio") : '';
|
||||
const tab = req.query.tab;
|
||||
const { fetch } = await import("undici");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user