Fixed catfact
This commit is contained in:
parent
85be37097d
commit
1bf10ccc0c
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ const request = require("request");
|
||||||
exports.run = async (bot, message, args) => {
|
exports.run = async (bot, message, args) => {
|
||||||
request({ uri: "https://catfact.ninja/facts", json: true }, (error, response, body) => {
|
request({ uri: "https://catfact.ninja/facts", json: true }, (error, response, body) => {
|
||||||
if (error) throw new Error(error);
|
if (error) throw new Error(error);
|
||||||
message.channel.send(`**Did you know?**\n ${body.facts[0]}`);
|
message.channel.send(`**Did you know?**\n ${body.data[0].fact}`);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue