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

Commit 646acd9f authored by Chris Tate's avatar Chris Tate Committed by android-build-merger
Browse files

Merge \\"Implement wildcard support for autoVerify web-link intent filters\\"...

Merge \\"Implement wildcard support for autoVerify web-link intent filters\\" into nyc-mr1-dev am: 32015d05
am: 0447574d

Change-Id: Ia3141ca7c099310d8125e349b3b2391161fa4ecb
parents 83749e7f 0447574d
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();
    }