async edits

This commit is contained in:
Dalton
2018-12-11 22:23:54 -08:00
parent 6e93e2964e
commit b418c21868

3
bot.js
View File

@@ -233,6 +233,9 @@ function asyncSiteRequest(url, process) {
.then(data => {
return process(data);
})
.then(res => {
return res;
})
.catch(error => {
sendToBotTestingChannel('async:' + error.message);
return "";