mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
Don't fail multiple concurrent dl same file if auto-file-renaming is enabled
This commit is contained in:
parent
2aa8e01836
commit
e1e6bb1ec5
4 changed files with 27 additions and 33 deletions
|
@ -74,6 +74,7 @@
|
|||
#include "uri.h"
|
||||
#include "SocketRecvBuffer.h"
|
||||
#include "MetalinkHttpEntry.h"
|
||||
#include "NullProgressInfoFile.h"
|
||||
#ifdef ENABLE_MESSAGE_DIGEST
|
||||
# include "Checksum.h"
|
||||
# include "ChecksumCheckIntegrityEntry.h"
|
||||
|
@ -258,11 +259,6 @@ bool HttpResponseCommand::executeInternal()
|
|||
}
|
||||
fe->setContentType(httpResponse->getContentType());
|
||||
grp->preDownloadProcessing();
|
||||
if (getDownloadEngine()->getRequestGroupMan()->isSameFileBeingDownloaded(grp)) {
|
||||
throw DOWNLOAD_FAILURE_EXCEPTION2(fmt(EX_DUPLICATE_FILE_DOWNLOAD,
|
||||
grp->getFirstFilePath().c_str()),
|
||||
error_code::DUPLICATE_DOWNLOAD);
|
||||
}
|
||||
|
||||
// update last modified time
|
||||
updateLastModifiedTime(httpResponse->getLastModifiedTime());
|
||||
|
@ -451,7 +447,7 @@ bool HttpResponseCommand::handleOtherEncoding(
|
|||
return true;
|
||||
}
|
||||
|
||||
getRequestGroup()->shouldCancelDownloadForSafety();
|
||||
getRequestGroup()->adjustFilename(std::make_shared<NullProgressInfoFile>());
|
||||
getRequestGroup()->initPieceStorage();
|
||||
getPieceStorage()->getDiskAdaptor()->initAndOpenFile();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue