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

Commit 1b57a461 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 7112073 from b646ae39 to rvc-qpr3-release

Change-Id: I6d35dedea1a9ad36a9932a157488f9f4ac4c61e3
parents cf9bfa85 b646ae39
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -1351,7 +1351,10 @@ public class DataConnection extends StateMachine {
        TelephonyDisplayInfo displayInfo = mPhone.getDisplayInfoController()
                .getTelephonyDisplayInfo();
        int overrideNetworkType = displayInfo.getOverrideNetworkType();
        int networkType = mPhone.getServiceState().getDataNetworkType();
        NetworkRegistrationInfo nri =  mPhone.getServiceState().getNetworkRegistrationInfo(
                NetworkRegistrationInfo.DOMAIN_PS, AccessNetworkConstants.TRANSPORT_TYPE_WWAN);
        int networkType = nri == null ? TelephonyManager.NETWORK_TYPE_UNKNOWN
                : nri.getAccessNetworkTechnology();
        return networkType == TelephonyManager.NETWORK_TYPE_NR
                || ((networkType == TelephonyManager.NETWORK_TYPE_LTE
                || networkType == TelephonyManager.NETWORK_TYPE_LTE_CA)
@@ -1506,11 +1509,11 @@ public class DataConnection extends StateMachine {
                    + isTempNotMeteredSupportedByCarrier() + ", device 5G capable="
                    + isDevice5GCapable() + ", display info="
                    + mPhone.getDisplayInfoController().getTelephonyDisplayInfo()
                    + ", subscription plans=" + subscriptionManager.getSubscriptionPlans(mSubId);
                    + ", subscription plans=" + subscriptionManager.getSubscriptionPlans(mSubId)
                    + ", Service state=" + mPhone.getServiceState();
            loge(message);
            loge("Service state=" + mPhone.getServiceState());
            AnomalyReporter.reportAnomaly(
                    UUID.fromString("9151f0fc-01df-4afb-b744-9c4529055248"), message);
                    UUID.fromString("9151f0fc-01df-4afb-b744-9c4529055249"), message);
        }

        final boolean suspended =