Loading core/java/android/content/IntentFilter.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1182,7 +1182,7 @@ public class IntentFilter implements Parcelable { public int match(Uri data, boolean wildcardSupported) { public int match(Uri data, boolean wildcardSupported) { String host = data.getHost(); String host = data.getHost(); if (host == null) { if (host == null) { if (wildcardSupported && mWild) { if (wildcardSupported && mWild && mHost.isEmpty()) { // special case, if no host is provided, but the Authority is wildcard, match // special case, if no host is provided, but the Authority is wildcard, match return MATCH_CATEGORY_HOST; return MATCH_CATEGORY_HOST; } else { } else { Loading Loading
core/java/android/content/IntentFilter.java +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1182,7 +1182,7 @@ public class IntentFilter implements Parcelable { public int match(Uri data, boolean wildcardSupported) { public int match(Uri data, boolean wildcardSupported) { String host = data.getHost(); String host = data.getHost(); if (host == null) { if (host == null) { if (wildcardSupported && mWild) { if (wildcardSupported && mWild && mHost.isEmpty()) { // special case, if no host is provided, but the Authority is wildcard, match // special case, if no host is provided, but the Authority is wildcard, match return MATCH_CATEGORY_HOST; return MATCH_CATEGORY_HOST; } else { } else { Loading