Skip to content

Commit

Permalink
fix type in hft-server.js
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Oct 25, 2014
1 parent da84805 commit 990d763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/hft-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ var HFTServer = function(options, startedCallback) {
if (!ip && req.socket) {
ip = req.socket.remoteAddress;
}
if (!ip && req.connection && req.connction.socket) {
if (!ip && req.connection && req.connection.socket) {
ip = req.connection.socket.remoteAddress;
}
if (ip && ip.indexOf(',')) {
Expand Down

0 comments on commit 990d763

Please sign in to comment.