Skip to content

Commit

Permalink
[Release PR] Fix waitlist beta metadata check (#2674)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/414235014887631/1207001617932318/f
Tech Design URL:
CC:

Description:

This PR changes the check we use to tell if someone is a beta user.
  • Loading branch information
samsymons authored Apr 4, 2024
1 parent fa0be08 commit 78902d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DuckDuckGo/Feedback/VPNMetadataCollector.swift
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ final class DefaultVPNMetadataCollector: VPNMetadataCollector {

return .init(
enableSource: .init(from: accessManager.networkProtectionAccessType()),
betaParticipant: accessType == .waitlistJoined,
betaParticipant: accessType == .waitlistInvited,
hasToken: hasToken,
subscriptionActive: AccountManager(subscriptionAppGroup: Bundle.main.appGroup(bundle: .subs)).isUserAuthenticated
)
Expand Down

0 comments on commit 78902d3

Please sign in to comment.