Skip to content

Commit

Permalink
fix(deps): update for cidr-utils changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrouet authored Oct 3, 2024
1 parent a997692 commit ec8fc00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl NoProxyItem {
if value == source {
true
} else if let Ok(ip_value) = IpAddr::from_str(value) {
ip_cidr.contains(ip_value)
ip_cidr.contains(&ip_value)
} else {
false
}
Expand Down

0 comments on commit ec8fc00

Please sign in to comment.