mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-14 17:28:43 +01:00
fix a issue
This commit is contained in:
parent
e47ba35619
commit
416c08a58d
1 changed files with 6 additions and 3 deletions
|
@ -341,10 +341,13 @@ app.get("/music", async function (req, res) {
|
||||||
var fetching = await fetcher(v);
|
var fetching = await fetcher(v);
|
||||||
|
|
||||||
const json = fetching.video.Player;
|
const json = fetching.video.Player;
|
||||||
|
|
||||||
const h = await video.text();
|
const h = await video.text();
|
||||||
const k = JSON.parse(toJson(h));
|
const k = JSON.parse(toJson(h));
|
||||||
|
|
||||||
if (!k.Video.Channel.Name.endsWith(" - Topic")) {
|
|
||||||
|
|
||||||
|
if (!json.Channel.Name.endsWith(" - Topic")) {
|
||||||
res.redirect(`/watch?v=${v}`);
|
res.redirect(`/watch?v=${v}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -372,7 +375,7 @@ app.get("/music", async function (req, res) {
|
||||||
|
|
||||||
// info
|
// info
|
||||||
const song = await musicInfo.searchSong(
|
const song = await musicInfo.searchSong(
|
||||||
{ title: k.Video.Title, artist: k.Video.Channel.Name.replace("- Topic", "") },
|
{ title: k.Video.Title, artist: json.Channel.Name.replace("- Topic", "") },
|
||||||
1000
|
1000
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue