[fd/aria2c] Remove duplicate `--file-allocation=none` (#8332)

Authored by: CrendKing
This commit is contained in:
CrendKing 2023-11-07 08:18:19 -08:00 committed by GitHub
parent 4a601c9eff
commit 21b25281c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ class Aria2cFD(ExternalFD):
cmd += ['--auto-file-renaming=false']
if 'fragments' in info_dict:
cmd += ['--file-allocation=none', '--uri-selector=inorder']
cmd += ['--uri-selector=inorder']
url_list_file = '%s.frag.urls' % tmpfilename
url_list = []
for frag_index, fragment in enumerate(info_dict['fragments']):