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

Unverified Commit 8867373f authored by LuK1337's avatar LuK1337
Browse files

fixup! RIL: Fix manual network selection with old modem

Change-Id: If2611e29a086b0b5b701d2f4b13d4b5bd8c60298
parent 952c4994
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2424,9 +2424,11 @@ public class RIL extends BaseCommands implements CommandsInterface {
                    + " operatorNumeric = " + operatorNumeric + ", ran = " + ran);
        }

        final String operatorNumericCopy = operatorNumeric;

        radioServiceInvokeHelper(HAL_SERVICE_NETWORK, rr, "setNetworkSelectionModeManual", () -> {
            networkProxy.setNetworkSelectionModeManual(rr.mSerial,
                    RILUtils.convertNullToEmptyString(operatorNumeric), ran);
                    RILUtils.convertNullToEmptyString(operatorNumericCopy), ran);
        });
    }