Skip to content

Commit

Permalink
For mozilla-mobile#10426: Sends GAID to Installation instead of Activ…
Browse files Browse the repository at this point in the history
…ation ping.
  • Loading branch information
sblatz committed May 8, 2020
1 parent d1005dd commit 41a03ed
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import mozilla.components.support.base.log.logger.Logger
import org.mozilla.fenix.GleanMetrics.Activation
import org.mozilla.fenix.GleanMetrics.Installation
import org.mozilla.fenix.GleanMetrics.Pings
import org.mozilla.fenix.ext.settings
Expand Down Expand Up @@ -66,7 +65,7 @@ class InstallationPing(private val context: Context) {

CoroutineScope(Dispatchers.IO).launch {
MetricsUtils.getHashedIdentifier(context)?.let {
Activation.identifier.set(it)
Installation.identifier.set(it)
}

Pings.installation.submit()
Expand Down

0 comments on commit 41a03ed

Please sign in to comment.