return fact
This commit is contained in:
parent
52e956746a
commit
128f3d63ea
1 changed files with 4 additions and 0 deletions
|
@ -51,8 +51,12 @@ export function catfact(state) {
|
|||
get("https://meowfacts.herokuapp.com/", (res) => {
|
||||
res.on("data", (d) => {
|
||||
process.stdout.write(d);
|
||||
const obj = JSON.parse(d);
|
||||
const fact = obj.data[0];
|
||||
return send(state, { content: fact });
|
||||
});
|
||||
}).on("error", (e) => {
|
||||
console.error(e);
|
||||
return send(state, { content: "failed to request fact" });
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue