Fix undefined ref

This commit is contained in:
Bryan Ashby 2017-08-18 21:50:41 -06:00
parent b896046bff
commit 0ebf839822
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ function TelnetClient(input, output) {
if(MORE_DATA_REQUIRED === i) {
break;
} else {
} else if(i) {
if(i.option) {
self.emit(i.option, i); // "transmit binary", "echo", ...
}