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

Commit 9fdc80ae authored by Ling Ma's avatar Ling Ma
Browse files

Fix incorrect apn log

Fix: 361001390
Test: basic voice call + data browsing
Flag: EXEMPT log only
Change-Id: I5e3f0d6e43fd839412ea216135b72ed9e63a0a0d
parent d304a07e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -2551,8 +2551,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);
                }
            }