From 1c945908eddec6ce6622bf9f600cdb7d29e472cd Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Fri, 12 Dec 2014 11:15:08 +1100 Subject: [PATCH] dashboard/app: show Mercurial page at /hg/ Change-Id: If5e77adc3766609b8f37423d0f132bcceff704f8 Reviewed-on: https://go-review.googlesource.com/1359 Reviewed-by: Dave Cheney Reviewed-by: Minux Ma Reviewed-by: Andrew Gerrand --- dashboard/app/build/dash.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/app/build/dash.go b/dashboard/app/build/dash.go index b456f170a5..37a044fb9f 100644 --- a/dashboard/app/build/dash.go +++ b/dashboard/app/build/dash.go @@ -33,7 +33,7 @@ func dashboardForRequest(r *http.Request) *Dashboard { return gccgoDash } if strings.HasPrefix(r.URL.Path, hgDash.Prefix) { - return goDash + return hgDash } return goDash }