From b50dbd1ee2c9f1f5c17e35645ef6029226a61459 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Thu, 28 Dec 2023 14:57:00 -0500 Subject: [PATCH] dont auto download torrents --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 5048afe..1b2789e 100644 --- a/main.py +++ b/main.py @@ -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)