Fix fallback PublicSuffixMatcher

This commit is contained in:
Ryan Schmitt 2019-10-02 15:48:28 -07:00
parent 976cfe69aa
commit b184b244ad
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ public final class PublicSuffixMatcherLoader {
} }
} }
} else { } else {
DEFAULT_INSTANCE = new PublicSuffixMatcher(Arrays.asList("com"), null); DEFAULT_INSTANCE = new PublicSuffixMatcher(DomainType.ICANN, Arrays.asList("com"), null);
} }
} }
} }