Skip to content

Commit

Permalink
[fd/aria2c] Remove duplicate --file-allocation=none (#8332)
Browse files Browse the repository at this point in the history
Authored by: CrendKing
  • Loading branch information
CrendKing committed Nov 7, 2023
1 parent 4a601c9 commit 21b2528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yt_dlp/downloader/external.py
Expand Up @@ -335,7 +335,7 @@ def _make_cmd(self, tmpfilename, info_dict):
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']):
Expand Down

0 comments on commit 21b2528

Please sign in to comment.