I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 7338b79e authored by zzz's avatar zzz
Browse files

GeoIP: Fix NPE in Maxmind lookup (thx parg!)

parent edda87d5
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,10 @@ public class GeoIP {
// returns upper case or "--"
String uc = ls.getCountryV6(ipv6).getCode();
if (!uc.equals(UNKNOWN_COUNTRY_CODE)) {
String cached = _codeCache.get(uc.toLowerCase(Locale.US));
String lc = uc.toLowerCase(Locale.US);
String cached = _codeCache.get(lc);
if (cached == null)
cached = lc;
_IPToCountry.put(search[i], cached);
} else {
_notFound.add(search[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment