I was following a tutorial YT here's the link https://www.youtube.com/watch?v=7rU_KyudGBY&t=726s to create a discord bot. But I have an error that I can't figure out how to fix. It says "cannot read the property of q". The only q I have in my code is in the getQuote function. What I'm trying to do is when I type $inspire, the bot will give an inspiring quote. But when I do that it gives the error "cannot read the property of q" and also "
const Discord = require("discord.js")
const fetch = require("node-fetch")
const client = new Discord.Client()
const mySecret = process.env['TOKEN']
function getQuote() {
return fetch("https://zenquotes.io/api/random")
.then(res => {
return res.json
})
.then(data => {
return data[0]["q"] + " -" + data[0]["a"]
})
}
client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`)
})
client.on("message", msg => {
if(msg.content === "ping") {
msg.reply("pong")
}
})
client.on("message", msg => {
if(msg.author.bot)return
if(msg.content === "$inspire") {
getQuote().then(quote => msg.channel.send(quote))
}
})
client.login(process.env.TOKEN)
its a bit outdated(it was made on March 8, 2021). I coded this in repl. Any ideas of how it would work? Thanks in advance