From d9bde64b5beddf482578cfe3057906ee500804aa Mon Sep 17 00:00:00 2001 From: Tillie Kottmann Date: Sat, 31 Oct 2020 12:45:32 +0100 Subject: [PATCH] Use proper paths for refs --- internal/workers/findref.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/workers/findref.go b/internal/workers/findref.go index fc8ea63..9795d58 100644 --- a/internal/workers/findref.go +++ b/internal/workers/findref.go @@ -42,7 +42,7 @@ func FindRefWorker(c *fasthttp.Client, jobs chan string, baseUrl, baseDir string } for _, ref := range refRegex.FindAll(body, -1) { - jobs <- string(ref) + jobs <- utils.Url(".git", string(ref)) } } default: