Skip to content

Commit 58ae900

Browse files
authored
Update bouncer.js
1 parent 4dbd33e commit 58ae900

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bouncer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ server = doServer(tlsOptions,function(socket) {
134134
if(DEBUG)
135135
console.log("<" +input[i]);
136136

137-
if ( connections[this.hash] )
138-
continue;
137+
if ( typeof connections[this.hash] !== 'undefined' )
138+
continue;
139139

140140
let commands=input[i].split(" ");
141141
let command=commands[0].toUpperCase();

0 commit comments

Comments
 (0)