1
Fork 0

fix some issues on the search smart descs

This commit is contained in:
Ashley 2022-10-25 21:54:53 +02:00
parent 38b4df0f79
commit 8b923f3d4c

View file

@ -202,7 +202,6 @@ app.get("/watch", async function (req, res) {
if (!data.comments) inv_comments = "Disabled"; if (!data.comments) inv_comments = "Disabled";
if (!api.video(v).b) { if (!api.video(v).b) {
var nnn = ""; var nnn = "";
var badges = ""; var badges = "";
@ -427,14 +426,14 @@ app.get("/search", async (req, res) => {
} }
const summary = await wiki const summary = await wiki
.summary(query + "") .summary(query + " ")
.then((summary_) => (summary_.title !== "Not found." ? summary_ : "none")); .then((summary_) => (summary_.title !== "Not found." ? summary_ : "none"));
renderTemplate(res, req, "search.ejs", { renderTemplate(res, req, "search.ejs", {
j, j,
continuation, continuation,
q: query, q: query,
summary summary,
}); });
}); });