From 9bba2372cb0447847c4ac25c74e3b899f3892f51 Mon Sep 17 00:00:00 2001 From: Cristian Monforte Date: Tue, 4 Mar 2025 12:41:48 +0100 Subject: [PATCH] init repository cache on autofill process created --- .../autofill/impl/service/store/AutofillFeatureRepository.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autofill/autofill-impl/src/main/java/com/duckduckgo/autofill/impl/service/store/AutofillFeatureRepository.kt b/autofill/autofill-impl/src/main/java/com/duckduckgo/autofill/impl/service/store/AutofillFeatureRepository.kt index 551ecc4661ff..e1e0562d3d56 100644 --- a/autofill/autofill-impl/src/main/java/com/duckduckgo/autofill/impl/service/store/AutofillFeatureRepository.kt +++ b/autofill/autofill-impl/src/main/java/com/duckduckgo/autofill/impl/service/store/AutofillFeatureRepository.kt @@ -51,7 +51,7 @@ class RealAutofillFeatureRepository @Inject constructor( init { appCoroutineScope.launch(dispatcherProvider.io()) { Timber.i("DDGAutofillService: Init AutofillFeatureRepository from $processName") - if (isMainProcess || processName == "autofill") { // TODO: Revisit this after merging autofill process PR + if (isMainProcess || processName == ":autofill") { loadToMemory() } }