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

Commit 698aa946 authored by Abhijith Shastry's avatar Abhijith Shastry
Browse files

Fix primary user check to display blocked numbers.

BUG: 26917087
Change-Id: I7008722134eccbe1b6088bf424a73c36f72b1af7
parent c9261855
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ public class BlockedNumbersActivity extends ListActivity
        }

        UserManager userManager = (UserManager) getSystemService(Context.USER_SERVICE);
        if (userManager.isPrimaryUser()) {
        if (!userManager.isPrimaryUser()) {
            TextView nonPrimaryUserText = (TextView) findViewById(R.id.non_primary_user);
            nonPrimaryUserText.setVisibility(View.VISIBLE);