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

Commit 56acd629 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...

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

Change-Id: I4e326d6b389bf541c51c4ff03b1bca370b7f60db
parents 02360205 6d0a5ca3
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;
        }