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
This commit is contained in:
parent
c07dca7be4
commit
2e5d3ac4e1
@ -102,6 +102,9 @@ Node.prototype.setInfo = function(data, callback)
|
|||||||
|
|
||||||
Node.prototype.setGeo = function(ip)
|
Node.prototype.setGeo = function(ip)
|
||||||
{
|
{
|
||||||
|
if (ip.substr(0, 7) == "::ffff:") {
|
||||||
|
ip = ip.substr(7)
|
||||||
|
}
|
||||||
this.info.ip = ip;
|
this.info.ip = ip;
|
||||||
this.geo = geoip.lookup(ip);
|
this.geo = geoip.lookup(ip);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user