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

Commit 4443a2e7 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

am: 5b509e12

Change-Id: Iab38544e2e6fa2cb500fbbdc997dacd9dc611198
parents 673250bc 5b509e12
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -1326,11 +1326,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);
    }