mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-22 13:13:24 +01:00
bug-fix: customizeAppId key should be used from UserDefaults.standard instead of UserDefaults.shared
This commit is contained in:
@@ -708,7 +708,7 @@ extension AppManager
|
||||
Task{
|
||||
var app: AppProtocol = app
|
||||
// ---- Preflight bundle ID resolution ----
|
||||
if UserDefaults.shared.customizeAppId, // only show prompt when enabled by user
|
||||
if UserDefaults.standard.customizeAppId, // only show prompt when enabled by user
|
||||
let presentingViewController {
|
||||
let originalBundleID = app.bundleIdentifier
|
||||
|
||||
|
||||
Reference in New Issue
Block a user