Skip to content

Commit ffc3c8c

Browse files
authored
Update of change-me
Causes this bug: this.channels[_channel].userhosts.push(_names[x].trim().split("!")[1]); ^ TypeError: Cannot read property 'push' of undefined
1 parent d82bb97 commit ffc3c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bouncer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ server = doServer(tlsOptions,function(socket) {
298298
case 'NICK':
299299
if(this.hash && connections[this.hash] && command[1]) {
300300
connections[this.hash].write("NICK "+command[1]+"\n");
301-
connections[this.hash].nick=command[1];
301+
//connections[this.hash].nick=command[1];
302302
}
303303
break;
304304
case 'JBNC':

0 commit comments

Comments
 (0)