dont auto download torrents

This commit is contained in:
Puyodead1 2023-12-28 14:57:00 -05:00
parent c8088cc081
commit b50dbd1ee2
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC

View File

@ -1356,7 +1356,7 @@ def download_aria(url, file_dir, filename):
"""
@author Puyodead1
"""
args = ["aria2c", url, "-o", filename, "-d", file_dir, "-j16", "-s20", "-x16", "-c", "--auto-file-renaming=false", "--summary-interval=0", "--disable-ipv6"]
args = ["aria2c", url, "-o", filename, "-d", file_dir, "-j16", "-s20", "-x16", "-c", "--auto-file-renaming=false", "--summary-interval=0", "--disable-ipv6", "--follow-torrent=false"]
process = subprocess.Popen(args)
log_subprocess_output("ARIA2-STDOUT", process.stdout)
log_subprocess_output("ARIA2-STDERR", process.stderr)