diff --git a/mobile/android/base/home/BrowserSearch.java b/mobile/android/base/home/BrowserSearch.java index 95ba83cab339..9c735032fa8c 100644 --- a/mobile/android/base/home/BrowserSearch.java +++ b/mobile/android/base/home/BrowserSearch.java @@ -533,9 +533,9 @@ public class BrowserSearch extends HomeFragment mAdapter.notifyDataSetChanged(); } - // Show suggestions opt-in prompt only if user hasn't been prompted - // and we're not on a private browsing tab. - if (!suggestionsPrompted && mSuggestClient != null) { + // Show suggestions opt-in prompt only if suggestions are not enabled yet, + // user hasn't been prompted and we're not on a private browsing tab. + if (!mSuggestionsEnabled && !suggestionsPrompted && mSuggestClient != null) { showSuggestionsOptIn(); } } catch (JSONException e) {