From 146b69944afbd5f17c984b152d41744c14476df7 Mon Sep 17 00:00:00 2001 From: mahee96 <47920326+mahee96@users.noreply.github.com> Date: Sun, 22 Feb 2026 05:29:55 +0530 Subject: [PATCH] bug-fix: switch toggle handler shouldn't disable the switch itself --- AltStore/Settings/SettingsViewController.swift | 1 - 1 file changed, 1 deletion(-) diff --git a/AltStore/Settings/SettingsViewController.swift b/AltStore/Settings/SettingsViewController.swift index 5230c2ed..0ce2082a 100644 --- a/AltStore/Settings/SettingsViewController.swift +++ b/AltStore/Settings/SettingsViewController.swift @@ -745,7 +745,6 @@ private extension SettingsViewController } @IBAction func toggleEnableAppIdCustomization(_ sender: UISwitch) { - customizeAppIdSwitch.isEnabled = sender.isOn // update it in database UserDefaults.standard.customizeAppId = sender.isOn }