Fixed bug that caused downloads from sites that support download resuming to fail with 'Server doesn't support resuming downloads'
This commit is contained in:
parent
af064ee435
commit
ffbda6032d
@ -130,7 +130,7 @@ class DownloadFileThread extends Thread {
|
|||||||
|
|
||||||
int statusCode = huc.getResponseCode();
|
int statusCode = huc.getResponseCode();
|
||||||
logger.debug("Status code: " + statusCode);
|
logger.debug("Status code: " + statusCode);
|
||||||
if (statusCode != 206 && observer.tryResumeDownload()) {
|
if (statusCode != 206 && observer.tryResumeDownload() && saveAs.exists()) {
|
||||||
// TODO find a better way to handle servers that don't support resuming downloads then just erroring out
|
// TODO find a better way to handle servers that don't support resuming downloads then just erroring out
|
||||||
throw new IOException("Server doesn't support resuming downloads");
|
throw new IOException("Server doesn't support resuming downloads");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user