From ff54373b0f933fc6208484229c23647edd74eb14 Mon Sep 17 00:00:00 2001 From: SimplifiedPrivacy Date: Tue, 18 Aug 2026 13:03:16 -0400 Subject: [PATCH] Failed Assassin disable raises error --- core/controllers/ProfileController.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/controllers/ProfileController.py b/core/controllers/ProfileController.py index 8f37b41..28ad10a 100644 --- a/core/controllers/ProfileController.py +++ b/core/controllers/ProfileController.py @@ -144,7 +144,8 @@ class ProfileController: from core.controllers.ConnectionController import ConnectionController if profile.is_session_profile(): - print(f"wipe_assassin is {wipe_assassin}") + + # START ASSASSIN SECTION if profile.assassin and wipe_assassin: print("triggering to WIPE assassin") assassin_result = assassin_tools.wipe( @@ -155,7 +156,8 @@ class ProfileController: if not assassin_result.valid: error_msg = f"Error with wiping respawn of Assassin: {assassin_result.error_type} & {assassin_result.message}" logger.error(error_msg) - # raise ProfileDeactivationError(f'Assassin NOT disabled: {assassin_result.message}') + raise ProfileDeactivationError(f'Assassin NOT disabled: {assassin_result.message}') + # END ASSASSIN SECTION if SessionStateController.exists(profile.id):