Update store check to check for AltServer or SideServer installation

This commit is contained in:
Joelle Stickney
2023-03-28 01:33:55 -04:00
parent 99cb43bbea
commit 5e2cc6e20c

View File

@@ -11,9 +11,10 @@ import AltSign
extension ALTApplication
{
static let altstoreBundleID = Bundle.Info.appbundleIdentifier
static let altstoreBundleIDOriginal = "rileytestut.AltStore"
var isAltStoreApp: Bool {
let isAltStoreApp = self.bundleIdentifier.contains(ALTApplication.altstoreBundleID)
let isAltStoreApp = self.bundleIdentifier.contains(ALTApplication.altstoreBundleID) || self.bundleIdentifier.contains(ALTApplication.altstoreBundleIDOriginal)
return isAltStoreApp
}
}