From 70c7042b091b69855024da8bccc271dc41895e84 Mon Sep 17 00:00:00 2001 From: Vxrtrauter Date: Wed, 3 Sep 2025 21:09:41 +0200 Subject: [PATCH] Start download client when a magnet link is added --- core/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/gui.py b/core/gui.py index 9cbe28c..cd73ada 100644 --- a/core/gui.py +++ b/core/gui.py @@ -99,6 +99,7 @@ class MainWindow(QtWidgets.QMainWindow, QWidget): post_url = selected print(selected) selected_magnet = get_magnet_link(selected) + start_client() add_magnet(selected_magnet) def run_gui(): @@ -111,5 +112,4 @@ def run_gui(): if __name__ == "__main__": - start_client() run_gui()