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

Skip to content
Snippets Groups Projects
Commit 7671550a authored by zzz's avatar zzz
Browse files

* EepGet: Don't retry after a MalformedURLException

parent 83d24fa9
No related branches found
No related tags found
No related merge requests found
......@@ -455,6 +455,8 @@ public class EepGet {
_listeners.get(i).attemptFailed(_url, _bytesTransferred, _bytesRemaining, _currentAttempt, _numRetries, ioe);
if (_log.shouldLog(Log.WARN))
_log.warn("ERR: doFetch failed " + ioe);
if (ioe instanceof MalformedURLException)
_keepFetching = false;
} finally {
if (_out != null) {
try {
......
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