Fix work profile screen timeout policy
Settings screen should apply both primary and managed maximum timeout policy, even separate profile challenge is enabled. Bug: 27493348 Change-Id: I09e815d6c6ae6ecd554316cfac82daf0ad0b0cdf
This commit is contained in:
@@ -1116,7 +1116,8 @@ public class SecuritySettings extends SettingsPreferenceFragment
|
||||
if (mDPM != null) {
|
||||
final EnforcedAdmin admin = RestrictedLockUtils.checkIfMaximumTimeToLockIsSet(
|
||||
getActivity());
|
||||
final long adminTimeout = mDPM.getMaximumTimeToLock(null);
|
||||
final long adminTimeout = mDPM
|
||||
.getMaximumTimeToLockForUserAndProfiles(UserHandle.myUserId());
|
||||
final long displayTimeout = Math.max(0,
|
||||
Settings.System.getInt(getContentResolver(), SCREEN_OFF_TIMEOUT, 0));
|
||||
// This setting is a slave to display timeout when a device policy is enforced.
|
||||
|
Reference in New Issue
Block a user