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

Commit 76f04073 authored by Philip P. Moltmann's avatar Philip P. Moltmann
Browse files

Compute correct rejected time

Fixes: 78632929
Test: atest FrameworksServicesTests:AppOpsServiceTest
            CtsPermissionTestCases:AppOpsTest

Change-Id: I34e1de6658c89c40cae3a8bb6e9fdb4e7fd80795
parent 9ea13ca0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1571,7 +1571,7 @@ public class AppOpsManager {
            long time = 0;
            for (int i = 0; i < _NUM_UID_STATE; i++) {
                if (mRejectTimes[i] > time) {
                    time = mTimes[i];
                    time = mRejectTimes[i];
                }
            }
            return time;