Fix issue with unlock attempts for the Work Challenge

The failed attempts to unlock were not being reported due to a small
bug.

Bug: 26677759
Change-Id: Ie03593ba38ba118e1c030135037e15400e7af8a2
This commit is contained in:
Clara Bayarri
2016-03-04 17:55:43 -08:00
parent 9566ceb122
commit 15fa7bf634

View File

@@ -223,7 +223,7 @@ public abstract class ConfirmDeviceCredentialBaseFragment extends InstrumentedFr
}
protected boolean isProfileChallenge() {
return Utils.isManagedProfile(UserManager.get(getContext()));
return Utils.isManagedProfile(UserManager.get(getContext()), mEffectiveUserId);
}
protected void reportSuccessfullAttempt() {