From 7c468ac9bbbc22e42a22bc7de7840356aff88bfe Mon Sep 17 00:00:00 2001 From: Hachi-R Date: Wed, 9 Apr 2025 11:29:12 -0300 Subject: [PATCH] fix: remove allow_multiple_connections from download method --- python_rpc/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_rpc/main.py b/python_rpc/main.py index 915f1670..94c34e17 100644 --- a/python_rpc/main.py +++ b/python_rpc/main.py @@ -147,11 +147,11 @@ def action(): torrent_downloader.start_download(url, data['save_path']) else: if existing_downloader and isinstance(existing_downloader, HttpDownloader): - existing_downloader.start_download(url, data['save_path'], data.get('header'), data.get('out'), data.get('allow_multiple_connections', False)) + existing_downloader.start_download(url, data['save_path'], data.get('header'), data.get('out')) else: http_downloader = HttpDownloader() downloads[game_id] = http_downloader - http_downloader.start_download(url, data['save_path'], data.get('header'), data.get('out'), data.get('allow_multiple_connections', False)) + http_downloader.start_download(url, data['save_path'], data.get('header'), data.get('out')) downloading_game_id = game_id