Don't fail silently

This commit is contained in:
loicbersier 2019-11-25 23:27:11 +01:00
parent e0847399ca
commit f51d2c1a6e

View file

@ -102,7 +102,8 @@ class tweetCommand extends Command {
T.post('media/upload', { media_data: b64Image }, function (err, data) {
if (err) {
console.log('OH NO AN ERROR!!!!!!!');
return console.error(err);
console.error(err);
return message.channel.send('OH NO!!! AN ERROR HAS OCCURED!!! please hold on while i find what\'s causing this issue! ');
} else {
Tweet(data);
}
@ -139,7 +140,8 @@ class tweetCommand extends Command {
T.post('statuses/update', options, function (err, response) {
if (err) {
console.error('OH NO!!!!');
return console.error(err);
console.error(err);
return message.channel.send('OH NO!!! AN ERROR HAS OCCURED!!! please hold on while i find what\'s causing this issue! ');
}
const tweetid = response.id_str;