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

Commit bbaac5a7 authored by Jack Yu's avatar Jack Yu
Browse files

Fixed the incorrect check

Fixed the incorrect check in the previous CL.

Fix: 367402314
Flag: EXEMPT bug fix
Test: Basic telephony functionality tests
Test: atest FrameworksTelephonyTests TeleServicesTest
Change-Id: I5a57ac071c286dffc433d351a3ea9639fddf5b5d
parent 738f3fc6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -568,7 +568,7 @@ public final class NetworkScanRequestTracker {
        //   3. The live scan is not requested by mobile network setting menu
        private synchronized boolean interruptLiveScan(NetworkScanRequestInfo nsri) {
            if (mLiveRequestInfo != null && mPendingRequestInfo == null
                    && !UserHandle.isSameApp(nsri.mUid, Process.SYSTEM_UID)
                    && UserHandle.isSameApp(nsri.mUid, Process.SYSTEM_UID)
                            && !UserHandle.isSameApp(mLiveRequestInfo.mUid, Process.SYSTEM_UID)) {
                doInterruptScan(mLiveRequestInfo.mScanId);
                mPendingRequestInfo = nsri;