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

Commit 16cac92f authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Do not get setting if targetUserId == UserHandle.USER_NULL

Fixes: 135061626

Test: Builds
Change-Id: Ib5b667d1de0c112d198db853ed0767fc08e00fbf
parent 01462c0b
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -18,10 +18,15 @@ package com.android.server.biometrics;

import android.content.Context;
import android.os.Build;
import android.os.UserHandle;
import android.provider.Settings;

public class Utils {
    public static boolean isDebugEnabled(Context context, int targetUserId) {
        if (targetUserId == UserHandle.USER_NULL) {
            return false;
        }

        if (!(Build.IS_ENG || Build.IS_USERDEBUG)) {
            return false;
        }