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

Commit 15422176 authored by Ethan Chen's avatar Ethan Chen Committed by Gerrit Code Review
Browse files

RIL: make data call APN a selectable RIL feature

Disabling this for all RIL versions above 3 can cause issues with some
device RILs and establishing a data connection.

Change-Id: I7be41b120663b0839beec95c22d0615f5e79c582
parent 2700d953
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3212,7 +3212,7 @@ public class RIL extends BaseCommands implements CommandsInterface {
            dataCall.cid = p.readInt();
            dataCall.active = p.readInt();
            dataCall.type = p.readString();
            if (version < 4) {
            if (version < 4 || needsOldRilFeature("datacallapn")) {
                p.readString(); // APN - not used
            }
            String addresses = p.readString();