Using corrected IP address

IP address being received had `:ffff` at the starting, it needs to be corrected before setting correct IP for node. Closes #99
pull/5/head
Ayushya Chitransh 7 years ago committed by GitHub
parent 60726f0795
commit d952387030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lib/node.js

@ -102,6 +102,9 @@ Node.prototype.setInfo = function(data, callback)
Node.prototype.setGeo = function(ip)
{
if (ip.substr(0, 7) == "::ffff:") {
ip = ip.substr(7)
}
this.info.ip = ip;
this.geo = geoip.lookup(ip);
}

Loading…
Cancel
Save