mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 05:57:36 +03:00
2010-10-19 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed the bug that file allocation is enabled in HTTP even if --file-allocation=none is specified. * src/HttpResponseCommand.cc
This commit is contained in:
parent
d8d0c21c4d
commit
6b74a27586
2 changed files with 10 additions and 1 deletions
|
@ -478,7 +478,10 @@ HttpDownloadCommand* HttpResponseCommand::createHttpDownloadCommand
|
|||
command->setLowestDownloadSpeedLimit
|
||||
(getOption()->getAsInt(PREF_LOWEST_SPEED_LIMIT));
|
||||
command->installStreamFilter(filter);
|
||||
getRequestGroup()->setFileAllocationEnabled(decideFileAllocation(filter));
|
||||
if(getRequestGroup()->isFileAllocationEnabled() &&
|
||||
!decideFileAllocation(filter)) {
|
||||
getRequestGroup()->setFileAllocationEnabled(false);
|
||||
}
|
||||
getRequestGroup()->getURISelector()->tuneDownloadCommand
|
||||
(getFileEntry()->getRemainingUris(), command);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue