1
Fork 0

Update 'src/lyrics.js'

This commit is contained in:
Ashley 2022-08-18 13:43:42 +02:00
parent 6e8454109a
commit 29b7a53372

View file

@ -1,14 +1,7 @@
const fetch = require("node-fetch");
async function main(e = "", d = "") {
const lyrics = await fetch(
`https://p.poketube.fun/api/lyrics?query=${e}`
).then((res) => res.json());
if (lyrics == undefined) lyrics = "Lyrics not found";
if (lyrics != undefined) {
return lyrics;
}
return "none"
}
module.exports = main;