...
This commit is contained in:
parent
285f0da9d5
commit
9babb3b8de
|
@ -12,9 +12,14 @@ 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.match(/^\//g) ? msg.text.replace(/^\//g, "\.") : msg.text;
|
try {
|
||||||
|
msg.text = 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)]);
|
||||||
}
|
}
|
||||||
|
catch(err) {
|
||||||
|
console.log(err);
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
send(id, msg) {
|
send(id, msg) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user