mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-07-25 12:08:21 +02:00
Fix undefined ref
This commit is contained in:
parent
b896046bff
commit
0ebf839822
1 changed files with 1 additions and 1 deletions
|
@ -482,7 +482,7 @@ function TelnetClient(input, output) {
|
||||||
|
|
||||||
if(MORE_DATA_REQUIRED === i) {
|
if(MORE_DATA_REQUIRED === i) {
|
||||||
break;
|
break;
|
||||||
} else {
|
} else if(i) {
|
||||||
if(i.option) {
|
if(i.option) {
|
||||||
self.emit(i.option, i); // "transmit binary", "echo", ...
|
self.emit(i.option, i); // "transmit binary", "echo", ...
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue