mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 02:58:12 +01:00
fix somethin lel
This commit is contained in:
parent
abd5b68a28
commit
6107e58fc9
1 changed files with 11 additions and 3 deletions
|
@ -20,11 +20,19 @@ const {
|
||||||
|
|
||||||
const sha384 = modules.hash;
|
const sha384 = modules.hash;
|
||||||
|
|
||||||
|
function getJson(str) {
|
||||||
|
try {
|
||||||
|
return getJson(str);
|
||||||
|
} catch {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = function (app, config, renderTemplate) {
|
module.exports = function (app, config, renderTemplate) {
|
||||||
app.get("/discover", async function (req, res) {
|
app.get("/discover", async function (req, res) {
|
||||||
const trends = await modules.fetch(config.tubeApi + `trending`);
|
const trends = await modules.fetch(config.tubeApi + `trending`);
|
||||||
const h = await trends.text();
|
const h = await trends.text();
|
||||||
const k = JSON.parse(modules.toJson(h));
|
const k = getJson(modules.toJson(h));
|
||||||
|
|
||||||
if (req.query.tab)
|
if (req.query.tab)
|
||||||
var tab = `/?type=${capitalizeFirstLetter(req.query.tab)}`;
|
var tab = `/?type=${capitalizeFirstLetter(req.query.tab)}`;
|
||||||
|
@ -35,7 +43,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
.fetch(`https://vid.puffyan.us/api/v1/trending${tab}`)
|
.fetch(`https://vid.puffyan.us/api/v1/trending${tab}`)
|
||||||
.then((res) => res.text());
|
.then((res) => res.text());
|
||||||
|
|
||||||
const t = JSON.parse(invtrend);
|
const t = getJson(invtrend);
|
||||||
|
|
||||||
if (req.query.mobilesearch) {
|
if (req.query.mobilesearch) {
|
||||||
var query = req.query.mobilesearch;
|
var query = req.query.mobilesearch;
|
||||||
|
@ -52,7 +60,7 @@ module.exports = function (app, config, renderTemplate) {
|
||||||
);
|
);
|
||||||
|
|
||||||
const text = await search.text();
|
const text = await search.text();
|
||||||
var j = JSON.parse(modules.toJson(text));
|
var j = getJson(modules.toJson(text));
|
||||||
}
|
}
|
||||||
|
|
||||||
renderTemplate(res, req, "main.ejs", {
|
renderTemplate(res, req, "main.ejs", {
|
||||||
|
|
Loading…
Reference in a new issue