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

Commit 77d9f308 authored by Amith Yamasani's avatar Amith Yamasani Committed by Android Git Automerger
Browse files

am 427dccc0: Merge "Fix build part 2" into jb-mr1-dev

* commit '427dccc0':
  Fix build part 2
parents e3d89013 427dccc0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -506,7 +506,8 @@ public class UserManagerService extends IUserManager.Stub {
            Intent addedIntent = new Intent(Intent.ACTION_USER_ADDED);
            addedIntent.putExtra(Intent.EXTRA_USER_HANDLE, userInfo.id);
            mContext.sendBroadcast(addedIntent, android.Manifest.permission.MANAGE_USERS);
            mContext.sendBroadcastToUser(new Intent(Intent.ACTION_BOOT_COMPLETED), userInfo.id);
            mContext.sendBroadcastAsUser(new Intent(Intent.ACTION_BOOT_COMPLETED),
                    new UserHandle(userInfo.id));
        }
        return userInfo;
    }