From 33616e0042f877f81fde486e87c7b4a480ad4336 Mon Sep 17 00:00:00 2001 From: ValentinTimisica Date: Fri, 7 Feb 2020 17:12:08 +0200 Subject: [PATCH] For #8172: Add a new "Fenix" Leanplum attribute --- .../mozilla/fenix/components/metrics/LeanplumMetricsService.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt b/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt index 1240a3e07..3c1de96d4 100644 --- a/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt +++ b/app/src/main/java/org/mozilla/fenix/components/metrics/LeanplumMetricsService.kt @@ -94,7 +94,8 @@ class LeanplumMetricsService(private val application: Application) : MetricsServ "klar_installed" to installedApps.contains(MozillaProductDetector.MozillaProducts.KLAR.productName), "fxa_signed_in" to application.settings().fxaSignedIn, "fxa_has_synced_items" to application.settings().fxaHasSyncedItems, - "search_widget_installed" to application.settings().searchWidgetInstalled + "search_widget_installed" to application.settings().searchWidgetInstalled, + "fenix" to true )) }