Closed TarekRaafat closed 4 years ago
geoip returns a null value.
geoip
null
When I bypass the _geoipLite2 function and use the below instead it works as expected.
_geoipLite2
Doesn't work const geo = _geoipLite2.default.lookup(this.req.ip); Works const geo = _geoipLite.lookup(this.req.ip);
Doesn't work
const geo = _geoipLite2.default.lookup(this.req.ip);
Works
const geo = _geoipLite.lookup(this.req.ip);
Any idea why this is occurring?
Same here :(
+1
@TarekRaafat @italofialho @victor-gabou
I released v1.2.0, I think it's fixed.
geoip
returns anull
value.When I bypass the
_geoipLite2
function and use the below instead it works as expected.Any idea why this is occurring?