1
0
Fork 0

Say how many charatcers need to be removed if message is too long

akairo
loicbersier 5 years ago
parent 8db51f2fe8
commit 4fc498e14d

@ -143,7 +143,7 @@ class tweetCommand extends Command {
T.post('statuses/update', options, function (err, response) {
if (err) {
if (err.code == 88) return message.channel.send(err.message); // Rate limit exceeded
if (err.code == 186) return message.channel.send(err.message); // Tweet needs to be a bit shorter.
if (err.code == 186) return message.channel.send(`${err.message} Your message was ${text.length} characters, you need to remove ${text.length - 280} characters`); // Tweet needs to be a bit shorter.
if (err.code == 187) return message.channel.send(err.message); // Status is a duplicate.
if (err.code == 326) return message.channel.send(err.message); // To protect our users from spam and other malicious activity, this account is temporarily locked.
console.error('OH NO!!!!');

Loading…
Cancel
Save