fix: linking to wrong declaration URLs
Alan Pearce alan@alanpearce.eu
Sun, 12 May 2024 21:28:26 +0200
1 files changed, 3 insertions(+), 0 deletions(-)
jump to
M internal/importer/ingest.go → internal/importer/ingest.go
@@ -57,6 +57,9 @@ return "very strange" } func makeGitHubFileURL(userRepo string, ref string, subPath string) string { + if ref == "" { + ref = "master" + } url, _ := url.JoinPath("https://github.com/", userRepo, "blob", ref, subPath) return url