mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-13 01:38:03 +01:00
add @youtube.com url support
This commit is contained in:
parent
3676195537
commit
8229cc46b6
1 changed files with 7 additions and 2 deletions
|
@ -257,8 +257,13 @@ module.exports = function (app, config, renderTemplate) {
|
|||
app.get("/channel/", async (req, res) => {
|
||||
const { fetch } = await import("undici");
|
||||
try {
|
||||
const ID = req.query.id;
|
||||
const tab = req.query.tab;
|
||||
|
||||
var ID = req.query.id;
|
||||
|
||||
if (ID.endsWith('@youtube.com')) {
|
||||
ID = ID.slice(0, -'@youtube.com'.length);
|
||||
}
|
||||
const tab = req.query.tab;
|
||||
const cache = {};
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue