From d68ae023355a135565bb9127ac2ff830d96bb4fd Mon Sep 17 00:00:00 2001 From: SimplifiedPrivacy Date: Wed, 29 Jul 2026 19:05:06 -0400 Subject: [PATCH] Bug fix on ProfileController's disable missing the imported result type to pass on to GUI --- core/controllers/ProfileController.py | 1 + 1 file changed, 1 insertion(+) diff --git a/core/controllers/ProfileController.py b/core/controllers/ProfileController.py index 3e993bb..4cbc936 100644 --- a/core/controllers/ProfileController.py +++ b/core/controllers/ProfileController.py @@ -4,6 +4,7 @@ from core.services.networking.general_connection_tools.connection_enable import from core.services.networking.systemwide.systemwide_utils import get_firewall_setting, get_dns_setting from core.services.networking.systemwide import killswitch from core.errors.exceptions import FirewallError +from core.models.Result import Result, ResultError from core.Errors import InvalidSubscriptionError, MissingSubscriptionError, ConnectionTerminationError, ProfileActivationError, ProfileDeactivationError, MissingLocationError, ConnectionUnprotectedError, EndpointVerificationError, ProfileStateConflictError from core.controllers.ApplicationController import ApplicationController