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
60726f0795
commit
d952387030
@ -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…
Reference in New Issue
Block a user