get rid of replace-errors

This commit is contained in:
Flummi 2017-11-13 13:34:15 +01:00
parent f195f561f6
commit d2f79b2925

View File

@ -12,7 +12,7 @@ class tg {
this.client.on('message', msg => { this.client.on('message', msg => {
if (msg.date >= (~~(Date.now() / 1000) - 10)) { if (msg.date >= (~~(Date.now() / 1000) - 10)) {
msg.text = msg.text.replace(/^\//g, "\."); msg.text = msg.text.match(/^\//g) ? msg.text.replace(/^\//g, "\.") : msg.text;
this.emit('data', ['message', this.reply(msg)]); this.emit('data', ['message', this.reply(msg)]);
} }
}); });