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

Commit b251090d authored by Dil3mm4's avatar Dil3mm4 Committed by Francesco Manzo
Browse files

FODCircleView: ensure that when we check for bouncer, we're on keyguard.

Bouncer doesn't seem to exist anywhere else.

Tests:
    - have phone unlocked by trust agent, open any third party app with biometric unlock, ensure FOD is visible
Change-Id: Ic3895853f7461afcbc816c6155c8db13011bb668
parent 2515b733
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -381,7 +381,7 @@ public class FODCircleView extends ImageView {
            return;
        }

        if (mUpdateMonitor.getUserCanSkipBouncer(mUpdateMonitor.getCurrentUser())) {
        if (mIsKeyguard && mUpdateMonitor.getUserCanSkipBouncer(mUpdateMonitor.getCurrentUser())) {
            // Ignore show calls if user can skip bouncer
            return;
        }