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

Commit c766bd16 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Resolve trust agents on USER_STARTED in addition to USER_ADDED." into...

Merge "Resolve trust agents on USER_STARTED in addition to USER_ADDED." into qt-qpr1-dev am: 8a4f3230

Change-Id: I1bb6d08848082da12cd53e39d676ca531d3d0eb7
parents be776fed 8a4f3230
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1437,7 +1437,8 @@ public class TrustManagerService extends SystemService {
            if (DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED.equals(action)) {
                refreshAgentList(getSendingUserId());
                updateDevicePolicyFeatures();
            } else if (Intent.ACTION_USER_ADDED.equals(action)) {
            } else if (Intent.ACTION_USER_ADDED.equals(action) || Intent.ACTION_USER_STARTED.equals(
                    action)) {
                int userId = getUserId(intent);
                if (userId > 0) {
                    maybeEnableFactoryTrustAgents(mLockPatternUtils, userId);
@@ -1478,6 +1479,7 @@ public class TrustManagerService extends SystemService {
            filter.addAction(DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED);
            filter.addAction(Intent.ACTION_USER_ADDED);
            filter.addAction(Intent.ACTION_USER_REMOVED);
            filter.addAction(Intent.ACTION_USER_STARTED);
            context.registerReceiverAsUser(this,
                    UserHandle.ALL,
                    filter,