Change this to be hardcoded SideStore search

This commit is contained in:
nythepegasus
2023-10-17 17:38:09 -04:00
parent c5b8cb4459
commit 766fb89e0b

View File

@@ -55,8 +55,13 @@ public extension Bundle
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] { var appGroups: [String] {
return self.infoDictionary?[Bundle.Info.appGroups] as? [String] ?? [] return self.infoDictionary?[Bundle.Info.appGroups] as? [String] ?? []
} }