Skip to content

Commit

Permalink
Make the VPN uninstall pixels daily and count (#2854)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/0/1207541445344648/f

Description

Makes the VPN uninstall attempt pixels daily and count.
  • Loading branch information
diegoreymendez authored Jun 14, 2024
1 parent 74be1ca commit f27ba71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DuckDuckGo/Waitlist/VPNUninstaller.swift
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ final class VPNUninstaller: VPNUninstalling {
///
@MainActor
func uninstall(removeSystemExtension: Bool) async throws {
pixelKit?.fire(IPCUninstallAttempt.begin)
pixelKit?.fire(IPCUninstallAttempt.begin, frequency: .dailyAndCount)

do {
// We can do this optimistically as it has little if any impact.
Expand Down
2 changes: 1 addition & 1 deletion DuckDuckGoVPN/VPNUninstaller.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ final class VPNUninstaller: VPNUninstalling {
}

func uninstall(includingSystemExtension: Bool) async throws {
pixelKit?.fire(VPNUninstallAttempt.begin)
pixelKit?.fire(VPNUninstallAttempt.begin, frequency: .dailyAndCount)

do {
try await removeSystemExtension()
Expand Down

0 comments on commit f27ba71

Please sign in to comment.