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

Commit 020c4c89 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Correctly log op state if ops restriction is set"

parents 7956435f f56fe2c2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1182,8 +1182,8 @@ public class AppOpsService extends IAppOpsService.Stub {
            }
        } else {
            for (int j=0; j<ops.length; j++) {
                int code = uidState.opModes.keyAt(j);
                if (code >= 0) {
                int code = ops[j];
                if (uidState.opModes.indexOfKey(code) >= 0) {
                    if (resOps == null) {
                        resOps = new ArrayList<>();
                    }