Dan Ballard pushed to branch tor-browser-153.0esr-16.0-1 at The Tor Project / Applications / Tor Browser Commits: 7d1427b6 by clairehurst at 2026-08-04T10:55:01-07:00 fixup! [android] Disable features and functionality Bug 45173: Disable search optimizations for android - - - - - 1 changed file: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt ===================================== @@ -2121,30 +2121,11 @@ class Settings( default = true, ) - var isSearchOptimizationEnabled by booleanPreference( - key = appContext.getPreferenceKey(R.string.pref_key_search_optimization_feature), - default = { FxNimbus.features.searchOptimizationOption.value().enabled }, - ) - - var shouldShowSearchOptimizationCards by booleanPreference( - key = appContext.getPreferenceKey(R.string.pref_key_search_optimization_cards), - default = { isSearchOptimizationEnabled }, - ) - - var shouldShowSearchOptimizationStockCard by booleanPreference( - key = appContext.getPreferenceKey(R.string.pref_key_search_optimization_stocks), - default = { FxNimbus.features.searchOptimizationOption.value().showStocksCard }, - ) - - var shouldShowSearchOptimizationFlightCard by booleanPreference( - key = appContext.getPreferenceKey(R.string.pref_key_search_optimization_flights), - default = { FxNimbus.features.searchOptimizationOption.value().showFlightsCard }, - ) - - var shouldShowSearchOptimizationSportCard by booleanPreference( - key = appContext.getPreferenceKey(R.string.pref_key_search_optimization_sports), - default = { FxNimbus.features.searchOptimizationOption.value().showSportsCard }, - ) + var isSearchOptimizationEnabled = false + var shouldShowSearchOptimizationCards = false + var shouldShowSearchOptimizationStockCard = false + var shouldShowSearchOptimizationFlightCard = false + var shouldShowSearchOptimizationSportCard = false val isTabStripEnabled = false View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/7d1427b6... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/7d1427b6... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
participants (1)
-
Dan Ballard (@dan)