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

Commit fb428283 authored by Matthew Fritze's avatar Matthew Fritze Committed by Android (Google) Code Review
Browse files

Merge "Fix bug preventing users from clicking settings suggestions twice" into nyc-mr1-dev

parents 7be1b592 f265dbc4
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -1273,11 +1273,7 @@ public class SettingsActivity extends SettingsDrawerActivity
        if (intent == null || ActivityManager.isUserAMonkey()) {
            return;
        }
        final ComponentName componentName = intent.getComponent();
        if (componentName.equals(mCurrentSuggestion)) {
            return;
        }
        mCurrentSuggestion = componentName;
        mCurrentSuggestion = intent.getComponent();
        startActivityForResult(intent, REQUEST_SUGGESTION);
    }