Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7e8b27a authored by Fabrice Di Meglio's avatar Fabrice Di Meglio Committed by Android (Google) Code Review
Browse files

Merge "Fix bug #14302110 Settings crash on hitting back key from Wifi recent searches page"

parents 56c17b4d 3d5aeb76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1230,7 +1230,7 @@ public class SettingsActivity extends Activity
    @Override
    public boolean onQueryTextChange(String newText) {
        mSearchQuery = newText;
        if (TextUtils.isEmpty(newText) && mSearchResultsFragment == null) {
        if (TextUtils.isEmpty(newText) || mSearchResultsFragment == null) {
            return false;
        }
        return mSearchResultsFragment.onQueryTextChange(newText);