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

Commit 6d0a5ca3 authored by Jack Yu's avatar Jack Yu Committed by android-build-merger
Browse files

Merge "Fix to read Tethering APN data terminated by empty parameters correctly" am: 6d94f19b

am: 7bcde7af

Change-Id: Ic3acff8a400bca4fcd742c8100667172a0e5a7fe
parents 8e3be208 7bcde7af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -811,7 +811,7 @@ public class ApnSetting implements Parcelable {
            version = 1;
        }

        String[] a = data.split("\\s*,\\s*");
        String[] a = data.split("\\s*,\\s*", -1);
        if (a.length < 14) {
            return null;
        }