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

Commit 06e9f534 authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am 8766bdcb: Merge "Fix parsing of old-style intent URIs" into lmp-dev

* commit '8766bdcb803698a2a2765bb46ab57bba655b41cf':
  Fix parsing of old-style intent URIs
parents 11549dd2 50572be3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4295,7 +4295,7 @@ public class Intent implements Parcelable, Cloneable {
                int j = uri.indexOf(')', i);
                while (i < j) {
                    int sep = uri.indexOf('!', i);
                    if (sep < 0) sep = j;
                    if (sep < 0 || sep > j) sep = j;
                    if (i < sep) {
                        intent.addCategory(uri.substring(i, sep));
                    }