Address the issue related to URL validation

This commit is contained in:
luchua-bc
2020-03-22 22:39:56 -04:00
parent b006e00995
commit bec82d44d4
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ If you want to create an app that displays the content of a remote website
2. open the `MyWebViewClient.java` file and replace `example.com` on line **14** with your custom hostname
```java
if (Objects.requireNonNull(Uri.parse(url).getHost()).endsWith("example.com")) {
if (Objects.requireNonNull(Uri.parse(url).getHost()).endsWith(".example.com")) {
```
### Using a local source