Merge "Fixed lingering network bitmask not set issue" into tm-dev

This commit is contained in:
Jack Yu
2022-04-10 06:24:11 +00:00
committed by Android (Google) Code Review

View File

@@ -1576,7 +1576,9 @@ public class ApnSetting implements Parcelable {
* @hide * @hide
*/ */
public boolean canSupportLingeringNetworkType(@NetworkType int networkType) { public boolean canSupportLingeringNetworkType(@NetworkType int networkType) {
if (networkType == 0) { // For backwards compatibility, if this field is not set, we just use the existing
// network type bitmask.
if (mLingeringNetworkTypeBitmask == 0) {
return canSupportNetworkType(networkType); return canSupportNetworkType(networkType);
} }
// Do a special checking for GSM. In reality, GSM is a voice only network type and can never // Do a special checking for GSM. In reality, GSM is a voice only network type and can never