From 0c5e0f8233621dacbe96ecac7fab68b60ee06f5d Mon Sep 17 00:00:00 2001 From: Jonathan Almeida Date: Tue, 8 Nov 2022 16:50:06 -0500 Subject: [PATCH] [fenix] Bug 1798805 - Initialize the FxaPushSupportFeature We added the new `initialize` to explicitly make the call to start the feature but we never actually used it here after it landed. --- .../main/java/org/mozilla/fenix/components/BackgroundServices.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/org/mozilla/fenix/components/BackgroundServices.kt b/app/src/main/java/org/mozilla/fenix/components/BackgroundServices.kt index d8d04e1d84..508fdd2461 100644 --- a/app/src/main/java/org/mozilla/fenix/components/BackgroundServices.kt +++ b/app/src/main/java/org/mozilla/fenix/components/BackgroundServices.kt @@ -183,6 +183,7 @@ class BackgroundServices( // Enable push if it's configured. push.feature?.let { autoPushFeature -> FxaPushSupportFeature(context, accountManager, autoPushFeature, crashReporter) + .initialize() } SendTabFeature(accountManager) { device, tabs ->