mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-17 13:22:09 +00:00
Fix missing betaChecker arg in IAPManager
This commit is contained in:
parent
842375ffce
commit
d74c94c125
@ -33,6 +33,7 @@ extension IAPManager {
|
||||
customUserLevel: Configuration.Environment.userLevel,
|
||||
inAppHelper: Configuration.IAPManager.inAppHelper,
|
||||
receiptReader: Configuration.IAPManager.appReceiptReader,
|
||||
betaChecker: Configuration.IAPManager.betaChecker,
|
||||
productsAtBuild: Configuration.IAPManager.productsAtBuild
|
||||
)
|
||||
|
||||
|
@ -32,6 +32,7 @@ extension IAPManager {
|
||||
static let sharedForTunnel = IAPManager(
|
||||
inAppHelper: Configuration.IAPManager.inAppHelper,
|
||||
receiptReader: Configuration.IAPManager.tunnelReceiptReader,
|
||||
betaChecker: Configuration.IAPManager.betaChecker,
|
||||
productsAtBuild: Configuration.IAPManager.productsAtBuild
|
||||
)
|
||||
}
|
||||
|
@ -152,6 +152,10 @@ extension Configuration.IAPManager {
|
||||
)
|
||||
}()
|
||||
|
||||
static var betaChecker: BetaChecker {
|
||||
TestFlightChecker()
|
||||
}
|
||||
|
||||
static let productsAtBuild: BuildProducts<AppProduct> = {
|
||||
#if os(iOS)
|
||||
if $0 <= 2016 {
|
||||
|
Loading…
Reference in New Issue
Block a user