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

Commit 69cca434 authored by Sooraj Sasindran's avatar Sooraj Sasindran
Browse files

Fix NR registrations states


Bug: 154572573
Test: build
Change-Id: Ia7aad1e0fc8a64d8b760dda3dc80d89bc1bd3d2f
parent 423d8758
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -423,9 +423,9 @@ public class CellularNetworkService extends NetworkService {
                            .AccessTechnologySpecificInfo.EutranRegistrationInfo eutranInfo =
                                    regResult.accessTechnologySpecificInfo.eutranInfo();

                    isEndcAvailable = eutranInfo.nrIndicators.isDcNrRestricted;
                    isDcNrRestricted = eutranInfo.nrIndicators.isDcNrRestricted;
                    isNrAvailable = eutranInfo.nrIndicators.isNrAvailable;
                    isDcNrRestricted = eutranInfo.nrIndicators.isEndcAvailable;
                    isEndcAvailable = eutranInfo.nrIndicators.isEndcAvailable;
                    vopsInfo = convertHalLteVopsSupportInfo(
                            eutranInfo.lteVopsInfo.isVopsSupported,
                            eutranInfo.lteVopsInfo.isEmcBearerSupported);