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 cb6b2cf + d004c8d commit 9c42249Copy full SHA for 9c42249
bouncer.js
@@ -1254,6 +1254,8 @@ function clientConnect(socket) {
1254
case '353':
1255
_channel=data[4].toLowerCase().trim();
1256
_names=lines[n].substr(1).split(" :")[1].trim().split(" ");
1257
+ if (!this.channels[_channel])
1258
+ break;
1259
if(!this._getnames[_channel]) {
1260
this._getnames[_channel]=true;
1261
if(!this.channels[_channel]) {
@@ -1262,6 +1264,8 @@ function clientConnect(socket) {
1262
1264
this.channels[_channel].names=[];
1263
1265
}
1266
for(x=0;x<_names.length;x++) {
1267
1268
1269
this.channels[_channel].names.push(_names[x].trim().split("!")[0]);
1270
1271
if (typeof this.channels[_channel].userhosts === 'undefined')
0 commit comments