diff --git a/Shared/Extensions/Bundle+AltStore.swift b/Shared/Extensions/Bundle+AltStore.swift index 6754f5c9..7d48036e 100644 --- a/Shared/Extensions/Bundle+AltStore.swift +++ b/Shared/Extensions/Bundle+AltStore.swift @@ -55,8 +55,13 @@ public extension Bundle public extension Bundle { - static var baseAltStoreAppGroupID = "group." + Bundle.Info.appbundleIdentifier - + static var baseAltStoreAppGroupID = "com.SideStore.SideStore" // TODO: Define as a const elsewhere + /* I know naturecodevoid, Joe, and others wanted to change variables here to be consts elsewhere, but until + we do a big rewrite, I (ny) am going to keep this as this for the sake of time ;) + + If you think you have a better fix, contribute! + */ + var appGroups: [String] { return self.infoDictionary?[Bundle.Info.appGroups] as? [String] ?? [] }