aboutsummaryrefslogtreecommitdiff
path: root/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'handler.go')
-rw-r--r--handler.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/handler.go b/handler.go
index 2f32132..a29f399 100644
--- a/handler.go
+++ b/handler.go
@@ -55,10 +55,12 @@ func (h packageHandler) Handle(w http.ResponseWriter, r *http.Request, ps httpro
canonicalURL := fmt.Sprintf("%s/%s", h.config.URL, h.pkgName)
data := struct {
Repo string
+ Branch string
CanonicalURL string
GodocURL string
}{
Repo: h.pkg.Repo,
+ Branch: h.pkg.Branch,
CanonicalURL: canonicalURL,
GodocURL: fmt.Sprintf("https://%s/%s%s", h.config.Godoc.Host, canonicalURL, ps.ByName("path")),
}