FIX A BUG

This commit is contained in:
Ashley 2022-10-28 17:32:44 +02:00
parent f5111a45d3
commit b0e97f4e2a

View file

@ -576,6 +576,7 @@ app.get("/api/redirect", async (req, res) => {
res.redirect(red_url); res.redirect(red_url);
}); });
/*
app.get("/api/v1/:endpoint/:id", async (req, res) => { app.get("/api/v1/:endpoint/:id", async (req, res) => {
var inv_api_fetch = await fetch( var inv_api_fetch = await fetch(
`${config.invapi}/${req.params.endpoint}/${req.params.id}` `${config.invapi}/${req.params.endpoint}/${req.params.id}`
@ -585,6 +586,7 @@ app.get("/api/v1/:endpoint/:id", async (req, res) => {
res.send(inv_api_fetch); res.send(inv_api_fetch);
}); });
*/
app.get("/api/opensearch", async (req, res) => { app.get("/api/opensearch", async (req, res) => {
res.sendFile(__dirname + `/opensearch.xml`); res.sendFile(__dirname + `/opensearch.xml`);
@ -623,7 +625,7 @@ app.get("/", async function (req, res) {
if (!req.query.tab) var tab = ""; if (!req.query.tab) var tab = "";
const invtrend = await fetch( const invtrend = await fetch(
`https://inv.vern.cc/api/v1/trending${tab}` `https://vid.puffyan.us/api/v1/trending${tab}`
).then((res) => res.text()); ).then((res) => res.text());
const t = JSON.parse(invtrend); const t = JSON.parse(invtrend);