MarcTowler / discord-bot

BSD 2-Clause "Simplified" License
2 stars 0 forks source link

Double Spaces breaks commands #17

Closed MarcTowler closed 5 years ago

MarcTowler commented 5 years ago

Seen it in the archive command, double spacing between arguments causes a blank argument to be sent to the API.

Need to add some protection in the bot to discard arguments that are blank spaces.

MarcTowler commented 5 years ago

let messageArray = message.content.replace(/ +/g, ' ').split(" "); was used to fit