Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #14 from azuqua/kevin/develop
Browse files Browse the repository at this point in the history
remove TODOs from CLI and update README with patch
  • Loading branch information
kevinwilson541 committed Mar 30, 2017
2 parents bbfda4a + 0f37d53 commit 20244e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,8 @@ From here, you can reference the documentation found on the github pages for the

### <a name="ChangeLog"></a>ChangeLog

- 1.1.2:
- Remove TODOs from bin/cli
- 1.1.1:
- Grammatical fixes to README
- 1.1.0:
Expand Down
4 changes: 2 additions & 2 deletions bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Client extends EventEmitter {
});
return this;
}
cb(new Error("TODO"));
cb(new Error("Disconnected from server."));
return this;
}

Expand All @@ -103,7 +103,7 @@ class Client extends EventEmitter {
}
this._connected = false;
this._rcv.flush().forEach((el) => {
el.cb(new Error("TODO"));
el.cb(new Error("Disconnected from server."));
});
this.emit("disconnect");
return this;
Expand Down

0 comments on commit 20244e4

Please sign in to comment.