From d064c6350dffb7ae36b6b6063420fbe2e5656017 Mon Sep 17 00:00:00 2001 From: codeking Date: Wed, 12 Feb 2025 08:56:46 +0100 Subject: [PATCH] Fix bug in network interface activation logic --- core/controllers/ConnectionController.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/controllers/ConnectionController.py b/core/controllers/ConnectionController.py index 4a78efe..2a7766f 100644 --- a/core/controllers/ConnectionController.py +++ b/core/controllers/ConnectionController.py @@ -360,7 +360,7 @@ class ConnectionController: attempt += 1 if network_interface_is_activated is False: - ConnectionError('The network interface could not be activated.') + raise ConnectionError('The network interface could not be activated.') @staticmethod def system_uses_wireguard_interface():