From 082784b74f4241af0512e69dc80a72efb976dd61 Mon Sep 17 00:00:00 2001
From: ale <ale@incal.net>
Date: Mon, 17 Feb 2020 21:57:54 +0000
Subject: [PATCH] Fix the Handler in cmd/links

---
 cmd/links/links.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/links/links.go b/cmd/links/links.go
index 2263414..0fc87c3 100644
--- a/cmd/links/links.go
+++ b/cmd/links/links.go
@@ -20,7 +20,7 @@ var (
 	validSchemes = flag.String("schemes", "http,https", "comma-separated list of allowed protocols")
 )
 
-func extractLinks(p crawl.Publisher, u string, depth int, resp *http.Response, _ error) error {
+func extractLinks(p crawl.Publisher, u string, tag, depth int, resp *http.Response, _ error) error {
 	links, err := analysis.GetLinks(resp)
 	if err != nil {
 		// Not a fatal error, just a bad web page.
-- 
GitLab