mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-04 17:59:43 +02:00
Fixed Aria2 Errors, Automatically kill it, make it work with VPNs
This commit is contained in:
@@ -12,10 +12,22 @@ def run_aria2p():
|
||||
secret=""
|
||||
)
|
||||
)
|
||||
|
||||
return aria2
|
||||
|
||||
|
||||
def aria2server():
|
||||
downloads_dir = os.path.join(os.path.expanduser("~"), "Downloads")
|
||||
subprocess.Popen(["aria2c", "--enable-rpc", "--rpc-listen-all=true", f"--dir={downloads_dir}"])
|
||||
|
||||
cmd = [
|
||||
"aria2c",
|
||||
"--enable-rpc",
|
||||
"--disable-ipv6", # added this since it caused problems with vpns
|
||||
"--rpc-listen-all",
|
||||
"--rpc-listen-port=6800",
|
||||
f"--dir={downloads_dir}"
|
||||
]
|
||||
|
||||
|
||||
|
||||
return aria2
|
||||
aria2server = subprocess.Popen(cmd)
|
||||
return aria2server
|
||||
Reference in New Issue
Block a user