1
0
Fork 0

For #10426: Sends GAID to Installation instead of Activation ping. (#10529)

master
Sawyer Blatz 2020-05-08 12:04:15 -07:00 committed by GitHub
parent d1005dd236
commit b87c40d42f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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
@ -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()