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

Commit f704a3fd authored by Ling Ma's avatar Ling Ma Committed by Android (Google) Code Review
Browse files

Merge "Fix incorrect apn log" into main

parents b51bc363 9fdc80ae
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2552,8 +2552,9 @@ public class DataNetwork extends StateMachine {
                // the MMS capability from this cellular network. This will allow IWLAN to be
                // brought up for MMS later.
                if (dataProfile != null && !dataProfile.getApn().equals(mDataProfile.getApn())) {
                    log("Found a different apn name " + mDataProfile.getApn()
                            + " that can serve MMS on IWLAN.");
                    log("Found a different apn name " + dataProfile.getApn()
                            + " that can serve MMS on IWLAN. Current data profile "
                            + mDataProfile.getApn());
                    builder.removeCapability(NetworkCapabilities.NET_CAPABILITY_MMS);
                }
            }