Skip to content

Commit

Permalink
Merge branch 'release/1.93.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Jun 21, 2024
2 parents 3d08ec9 + 43d9bfd commit 0722047
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Configuration/BuildNumber.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CURRENT_PROJECT_VERSION = 204
CURRENT_PROJECT_VERSION = 205
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,6 @@ final class MacPacketTunnelProvider: PacketTunnelProvider {

// swiftlint:disable:next function_body_length
@MainActor @objc public init() {
let isSubscriptionEnabled = false

#if NETP_SYSTEM_EXTENSION
let defaults = UserDefaults.standard
#else
Expand All @@ -368,7 +366,7 @@ final class MacPacketTunnelProvider: PacketTunnelProvider {
let tokenStore = NetworkProtectionKeychainTokenStore(keychainType: Bundle.keychainType,
serviceName: Self.tokenServiceName,
errorEvents: debugEvents,
isSubscriptionEnabled: isSubscriptionEnabled,
isSubscriptionEnabled: false,
accessTokenProvider: { nil }
)
let entitlementsCache = UserDefaultsCache<[Entitlement]>(userDefaults: subscriptionUserDefaults,
Expand Down Expand Up @@ -406,7 +404,7 @@ final class MacPacketTunnelProvider: PacketTunnelProvider {
providerEvents: Self.packetTunnelProviderEvents,
settings: settings,
defaults: defaults,
isSubscriptionEnabled: isSubscriptionEnabled,
isSubscriptionEnabled: true,
entitlementCheck: entitlementsCheck)

setupPixels()
Expand Down

0 comments on commit 0722047

Please sign in to comment.