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

Skip to content
Snippets Groups Projects
Commit 01b4b227 authored by zzz's avatar zzz
Browse files

small optimization

parent 81dd267e
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,8 @@ class DummyNamingService extends NamingService {
if (hostname.length() >= 516) {
d = lookupBase64(hostname);
// What the heck, cache these too
putCache(hostname, d);
if (d != null)
putCache(hostname, d);
return d;
}
......
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