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

Commit 53d85119 authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Fixed an issue where USER_ALL notifications were showing" into oc-dev am: 295dd719

am: 0151c688

Change-Id: I9bc738f6bad45e314e077c2250fe3e086571db7a
parents 910563fc 0151c688
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -6269,6 +6269,9 @@ public class StatusBar extends SystemUI implements DemoMode,
    }
    }


    public boolean isLockscreenPublicMode(int userId) {
    public boolean isLockscreenPublicMode(int userId) {
        if (userId == UserHandle.USER_ALL) {
            return mLockscreenPublicMode.get(mCurrentUserId, false);
        }
        return mLockscreenPublicMode.get(userId, false);
        return mLockscreenPublicMode.get(userId, false);
    }
    }