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

Skip to content
Snippets Groups Projects
Commit 81007c1a authored by zzz's avatar zzz
Browse files

LookupDestJob: Missing return after sending fail for blind data

parent 2e3ff679
No related branches found
No related tags found
No related merge requests found
...@@ -154,6 +154,7 @@ class LookupDestJob extends JobImpl { ...@@ -154,6 +154,7 @@ class LookupDestJob extends JobImpl {
if (_log.shouldDebug()) if (_log.shouldDebug())
_log.debug("Failed b33 lookup " + _blindData.getUnblindedPubKey() + " with code " + code); _log.debug("Failed b33 lookup " + _blindData.getUnblindedPubKey() + " with code " + code);
returnFail(code); returnFail(code);
return;
} }
// do this after the fail checks above, because even if we // do this after the fail checks above, because even if we
// have the dest, it won't help get a LS. // have the dest, it won't help get a LS.
......
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