diff --git a/README.md b/README.md index 5edfecb..2c4101a 100644 --- a/README.md +++ b/README.md @@ -400,7 +400,7 @@ Options: separated list of accepted status codes. This example will accept 200, 201, 202, 203, 204, 429, and 500 as valid status codes. - [default: 100..=103,200..=299,403..=403] + [default: 100..=103,200..=299] --include-fragments Enable the checking of fragments in links diff --git a/lychee-lib/src/types/accept/selector.rs b/lychee-lib/src/types/accept/selector.rs index fe6b735..f3ab552 100644 --- a/lychee-lib/src/types/accept/selector.rs +++ b/lychee-lib/src/types/accept/selector.rs @@ -42,11 +42,7 @@ impl FromStr for AcceptSelector { impl Default for AcceptSelector { fn default() -> Self { - Self::new_from(vec![ - AcceptRange::new(100, 103), - AcceptRange::new(200, 299), - AcceptRange::new(403, 403), - ]) + Self::new_from(vec![AcceptRange::new(100, 103), AcceptRange::new(200, 299)]) } }