For #9256: Attempts to fix installation ping not being sent (#9254)

fennec/beta
Sawyer Blatz 4 years ago committed by GitHub
parent 0198305bfb
commit b9059c8208
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -508,6 +508,7 @@ class GleanMetricsService(private val context: Context) : MetricsService {
private var initialized = false
private val activationPing = ActivationPing(context)
private val installationPing = InstallationPing(context)
override fun start() {
logger.debug("Enabling Glean.")
@ -567,7 +568,7 @@ class GleanMetricsService(private val context: Context) : MetricsService {
}
activationPing.checkAndSend()
InstallationPing(context).checkAndSend()
installationPing.checkAndSend()
}
override fun stop() {

Loading…
Cancel
Save