tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit d731e585dcd76b8aa314fcf28f456921c27ce26e
parent 7ad768c1e5d3f106be9863030515aa43ba387ca3
Author: t-p-white <towhite@mozilla.com>
Date:   Wed, 22 Oct 2025 15:58:49 +0000

Bug 1988343 - Removed the duplicate opened_link telemetry probe r=android-reviewers,gmalekpour

Investigation notes:
1. [[ https://github.com/mozilla-mobile/fenix/pull/5975 | Original patch to add telemetry for open links in a private tab ]] in `IntentRecieverActivity`
2. [[ https://github.com/mozilla-mobile/fenix/pull/13327 | Fix private custom tabs ]] (added additional telemetry in `processIntent`, which duplicated the original)
3. [[ https://github.com/mozilla-mobile/fenix/issues/24210 | Latest change to remove telemetry wrapper ]]

The original cause of the duplication: [[ https://github.com/mozilla-mobile/fenix/pull/13327 | Fix private custom tabs ]] added the telemetry without removing the existing telemetry.

Differential Revision: https://phabricator.services.mozilla.com/D269598

Diffstat:
Mmobile/android/fenix/app/src/main/java/org/mozilla/fenix/IntentReceiverActivity.kt | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/IntentReceiverActivity.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/IntentReceiverActivity.kt @@ -136,7 +136,6 @@ class IntentReceiverActivity : Activity() { components.intentProcessors.privateIntentProcessor, ) } else { - Events.openedLink.record(Events.OpenedLinkExtra("NORMAL")) listOf( components.intentProcessors.customTabIntentProcessor, components.intentProcessors.intentProcessor,