From 6f7ddab607b7ee971610f1b573ef20415120c4c4 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 3 Aug 2023 01:06:21 +0200 Subject: [PATCH] fix clippy --- src/collector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/collector.rs b/src/collector.rs index 07921ec..47e7bf4 100644 --- a/src/collector.rs +++ b/src/collector.rs @@ -132,7 +132,7 @@ impl BrokenLinkCollector

{ if let LinkState::Undefined(links) = state { let hard_404 = if check_anchors { !matches!( - self.links.get(Href(&href).without_anchor().0), + self.links.get(Href(href).without_anchor().0), Some(&LinkState::Defined) ) } else {