Fixes the web scraper

This commit is contained in:
ION606
2022-04-30 21:07:16 -04:00
parent b377539f5f
commit b3be48612a
+2 -2
View File
@@ -9,9 +9,9 @@ module.exports ={
.then(response => {
const html = response.data;
const $ = cheerio.load(html);
lyrics = $('.para_row').text();
//lyrics = $('.para_row').text();
//message.channel.send(lyrics);
message.channel.send(lyrics);
console.log(lyrics);
})
.catch(console.error);