You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've only noticed this with privmsg, and I'm listening for "message" events. A privmsg to a channel or directly to the bot that starts with a colon causes a crash. It's particularly entertaining when someone puts a sad face in the channel like this: :(
... and then the bot dies.
I've worked around it for now with this:
bot.on('error', function(e) {
console.log(e);
});
The text was updated successfully, but these errors were encountered:
I've only noticed this with privmsg, and I'm listening for "message" events. A privmsg to a channel or directly to the bot that starts with a colon causes a crash. It's particularly entertaining when someone puts a sad face in the channel like this: :(
... and then the bot dies.
I've worked around it for now with this:
bot.on('error', function(e) {
console.log(e);
});
The text was updated successfully, but these errors were encountered: