We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ee97af + 09aabf3 commit 513085bCopy full SHA for 513085b
src/client.js
@@ -213,6 +213,11 @@ module.exports = class IrcClient extends EventEmitter {
213
214
commands.on('nick', function(event) {
215
if (client.user.nick === event.nick) {
216
+ // nicks starting with numbers are reserved for uuids
217
+ // we dont want to store these as they cannot be used
218
+ if (event.new_nick.match(/^\d/)) {
219
+ return;
220
+ }
221
client.user.nick = event.new_nick;
222
}
223
});
0 commit comments