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

Commit 0447574d authored by Christopher Tate's avatar Christopher Tate Committed by android-build-merger
Browse files

Merge \"Implement wildcard support for autoVerify web-link intent filters\" into nyc-mr1-dev

am: 32015d05

Change-Id: Ibab1b9ccfb7404fe515c3bfe9133bb7934d6e6d8
parents 5206e19d 32015d05
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -96,7 +96,12 @@ public class IntentFilterVerificationState {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(mHosts.valueAt(i));
            String host = mHosts.valueAt(i);
            // "*.example.tld" is validated via https://example.tld
            if (host.startsWith("*.")) {
                host = host.substring(2);
            }
            sb.append(host);
        }
        return sb.toString();
    }