For #24008 - Only refresh the contile top sites cache if feature is enabled

upstream-sync
Gabriel Luong 2 years ago committed by mergify[bot]
parent 48a93d7ade
commit 6fbffa3807

@ -340,7 +340,9 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity {
lifecycleScope.launch(IO) {
try {
components.core.contileTopSitesProvider.refreshTopSitesIfCacheExpired()
if (settings().showContileFeature) {
components.core.contileTopSitesProvider.refreshTopSitesIfCacheExpired()
}
} catch (e: Exception) {
Logger.error("Failed to refresh contile top sites", e)
}

Loading…
Cancel
Save