mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:18:26 +01:00
fix some goofy ahh stuff
This commit is contained in:
parent
dbd3f4dd90
commit
71ba4f020c
1 changed files with 3 additions and 9 deletions
|
@ -150,19 +150,13 @@ module.exports = function (app, config, renderTemplate) {
|
|||
};
|
||||
|
||||
const tj = await getChannelData(
|
||||
`https://invid-api.poketube.fun/api/v1/channels/videos/${ID}/?sort_by=${
|
||||
req.query.sort_by || "newest"
|
||||
}${continuation}`
|
||||
`https://invid-api.poketube.fun/api/v1/channels/videos/${ID}/?sort_by=${sort_by}${continuation}`
|
||||
);
|
||||
const shorts = await getChannelData(
|
||||
`https://invid-api.poketube.fun/api/v1/channels/${ID}/shorts?sort_by=${
|
||||
req.query.sort_by || "newest"
|
||||
}${continuations}`
|
||||
`https://invid-api.poketube.fun/api/v1/channels/${ID}/shorts?sort_by=${sort_by}${continuations}`
|
||||
);
|
||||
const stream = await getChannelData(
|
||||
`https://invid-api.poketube.fun/api/v1/channels/${ID}/streams?sort_by=${
|
||||
req.query.sort_by || "newest"
|
||||
}${continuationl}`
|
||||
`https://invid-api.poketube.fun/api/v1/channels/${ID}/streams?sort_by=${sort_by}${continuationl}`
|
||||
);
|
||||
const c = await getChannelData(
|
||||
`https://invid-api.poketube.fun/api/v1/channels/community/${ID}/`
|
||||
|
|
Loading…
Reference in a new issue