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

Commit 5b509e12 authored by Matthew Fritze's avatar Matthew Fritze Committed by android-build-merger
Browse files

Fix bug preventing users from clicking settings suggestions twice am: f265dbc4

am: e5e60ecc

Change-Id: I956ed80ce27ec50378901111f5679b163719628f
parents 2eda02e6 e5e60ecc
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -1278,11 +1278,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);
    }