[fenix] For https://github.com/mozilla-mobile/fenix/issues/23408: Fix pinned top sites count from the cached list.

pull/600/head
mcarare 3 years ago committed by mergify[bot]
parent f3727f6a49
commit 7104c92f2b

@ -251,7 +251,7 @@ class DefaultBrowserToolbarMenuController(
scope.launch {
val context = swipeRefresh.context
val numPinnedSites = topSitesStorage.cachedTopSites
.filter { it !is TopSite.Frecent || it !is TopSite.Provided }.size
.filter { it is TopSite.Default || it is TopSite.Pinned }.size
if (numPinnedSites >= settings.topSitesMaxLimit) {
AlertDialog.Builder(swipeRefresh.context).apply {

Loading…
Cancel
Save