1
Fork 0

fix a issue

This commit is contained in:
Ashley 2022-09-26 17:09:50 +02:00
parent e47ba35619
commit 416c08a58d

View file

@ -341,10 +341,13 @@ app.get("/music", async function (req, res) {
var fetching = await fetcher(v);
const json = fetching.video.Player;
const h = await video.text();
const k = JSON.parse(toJson(h));
if (!k.Video.Channel.Name.endsWith(" - Topic")) {
if (!json.Channel.Name.endsWith(" - Topic")) {
res.redirect(`/watch?v=${v}`);
}
@ -372,7 +375,7 @@ app.get("/music", async function (req, res) {
// info
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
);