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

Commit 8c238c5a authored by Christopher Schuster's avatar Christopher Schuster Committed by android-build-merger
Browse files

Merge "fixed handling of data URI schemes in Intent.toUri" am: c3d3cf56 am:...

Merge "fixed handling of data URI schemes in Intent.toUri" am: c3d3cf56 am: 928b7cba am: 067cfb36
am: ef34f7b3

Change-Id: I9c5a3706850706053d26ecdadf602ab2fafe3e8d
parents cb05acfc ef34f7b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9444,7 +9444,7 @@ public class Intent implements Parcelable, Cloneable {
                for (int i=0; i<N; i++) {
                    char c = data.charAt(i);
                    if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
                            || c == '.' || c == '-') {
                            || (c >= '0' && c <= '9') || c == '.' || c == '-' || c == '+') {
                        continue;
                    }
                    if (c == ':' && i > 0) {