chatbot bugfix
This commit is contained in:
parent
a0b991de89
commit
b9d997b652
|
@ -12,13 +12,19 @@ class cleverbot {
|
|||
const options = {
|
||||
url: `${this.api}/create`,
|
||||
method: "POST",
|
||||
body: cfg.main.chatbot.val,
|
||||
body: Object.assign(cfg.main.chatbot.val, {
|
||||
nick: "uwibot"
|
||||
}),
|
||||
json: true
|
||||
};
|
||||
rp(options)
|
||||
.then(res => {
|
||||
if(res.status === "success")
|
||||
this.nick = res.nick;
|
||||
else {
|
||||
this.nick = "uwibot";
|
||||
console.log(res.status);
|
||||
}
|
||||
})
|
||||
.catch(err => console.log(err));
|
||||
}
|
||||
|
@ -35,15 +41,8 @@ class cleverbot {
|
|||
json: true
|
||||
};
|
||||
rp(options)
|
||||
.then(res => {
|
||||
if(res.status === "success")
|
||||
resolve(res);
|
||||
else
|
||||
reject(res.status);
|
||||
})
|
||||
.catch(err => {
|
||||
reject(err);
|
||||
});
|
||||
.then(res => res.status === "success"?resolve(res):reject(res.status))
|
||||
.catch(err => reject(err));
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user