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

Commit 95f70ba2 authored by Ricardo Cerqueira's avatar Ricardo Cerqueira Committed by Gerrit Code Review
Browse files

Merge "RIL: fix protocol mismatch for DataConnectionState_v4" into jellybean

parents 3d761d22 b40a1424
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -3171,7 +3171,9 @@ public class RIL extends BaseCommands implements CommandsInterface {
            dataCall.cid = p.readInt();
            dataCall.active = p.readInt();
            dataCall.type = p.readString();
            if (version < 4) {
                p.readString(); // APN - not used
            }
            String addresses = p.readString();
            if (!TextUtils.isEmpty(addresses)) {
                dataCall.addresses = addresses.split(" ");