diff --git a/README.md b/README.md index 4eaf518..0f4e445 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ The `InternetConnection` class uses the following `Uri`s by default: | `https://one.one.one.one` | Response time is less than `100ms`, CORS enabled, no-cache | | `https://icanhazip.com` | Response time is less than `100ms`, CORS enabled, no-cache | | `https://jsonplaceholder.typicode.com/todos/1` | Response time is less than `100ms`, CORS enabled, no-cache | -| `https://reqres.in/api/users/1` | Response time is less than `100ms`, CORS enabled, no-cache | +| `https://pokeapi.co/api/v2/ability/?limit=1` | Response time is less than `100ms`, CORS enabled, no-cache | #### Some Tested URIs diff --git a/lib/src/internet_connection.dart b/lib/src/internet_connection.dart index 1619a4b..27dd65b 100644 --- a/lib/src/internet_connection.dart +++ b/lib/src/internet_connection.dart @@ -100,7 +100,9 @@ class InternetConnection { InternetCheckOption( uri: Uri.parse('https://jsonplaceholder.typicode.com/todos/1'), ), - InternetCheckOption(uri: Uri.parse('https://reqres.in/api/users/1')), + InternetCheckOption( + uri: Uri.parse('https://pokeapi.co/api/v2/ability/?limit=1'), + ), ]; /// The list of [Uri]s used for checking internet reachability.