mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-28 19:29:03 +01:00
qwq
This commit is contained in:
parent
0edc0c5c5d
commit
4a9d513b88
1 changed files with 10 additions and 1 deletions
11
server.js
11
server.js
|
@ -170,6 +170,15 @@ app.get("/watch", async function (req, res) {
|
|||
|
||||
|
||||
|
||||
var nn = "";
|
||||
|
||||
if (n === null) {
|
||||
nn = "";
|
||||
}
|
||||
|
||||
if (n) {
|
||||
nn = JSON.parse(n);
|
||||
}
|
||||
|
||||
var fetching = await fetcher(v);
|
||||
|
||||
|
@ -225,7 +234,7 @@ app.get("/watch", async function (req, res) {
|
|||
f: f,
|
||||
t: config.t_url,
|
||||
optout: t,
|
||||
nigth:JSON.parse(n),
|
||||
nigth:nn,
|
||||
lyrics: "",
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue