summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordemo <demo@antix1>2026-05-11 13:14:14 -0400
committerdemo <demo@antix1>2026-05-11 13:14:14 -0400
commitfa20e7fed19e09028c90e872ad2b0596d8857bb4 (patch)
treec3e0d480477c2b5a85f2f929cf37f1e4389ea488
parent4bd22523d43e72cd45582df4a9b73017620ccc7a (diff)
fix: append parsed version of href as opposed to original one
-rw-r--r--internal/links/find.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/links/find.go b/internal/links/find.go
index b825b1e..e3e068a 100644
--- a/internal/links/find.go
+++ b/internal/links/find.go
@@ -84,7 +84,7 @@ func filterByBaseURL(refURL *url.URL, hrefs []string) []string {
continue
}
- neighbors = append(neighbors, href)
+ neighbors = append(neighbors, u.String())
}
log.Printf("neighbors: %v", neighbors)