Skip to content

Commit

Permalink
Fixing new line fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lennard Westerveld committed Jul 29, 2015
1 parent 602351d commit 0b26063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transports/tcp.js
Expand Up @@ -33,7 +33,7 @@ TCPTransport.prototype.connect = function connect() {
};

TCPTransport.prototype._send = function send(message, cb) {
this.socket.write(message, cb);
this.socket.write(message + "\n", cb);
};

TCPTransport.prototype.close = function() {
Expand Down

0 comments on commit 0b26063

Please sign in to comment.