diff options
Diffstat (limited to 'routers/web/web.go')
-rw-r--r-- | routers/web/web.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/web/web.go b/routers/web/web.go index 374bafbc8d..d19bc5015d 100644 --- a/routers/web/web.go +++ b/routers/web/web.go @@ -138,7 +138,7 @@ func Routes() *web.Route { // redirect default favicon to the path of the custom favicon with a default as a fallback routes.Get("/favicon.ico", func(w http.ResponseWriter, req *http.Request) { - http.Redirect(w, req, path.Join(setting.StaticURLPrefix, "/assets/img/favicon.png"), 301) + http.Redirect(w, req, path.Join(setting.StaticURLPrefix, "/assets/img/favicon.png"), http.StatusMovedPermanently) }) common := []interface{}{} @@ -1121,7 +1121,7 @@ func RegisterRoutes(m *web.Route) { } repo.MustBeNotEmpty(ctx) - return + return cancel }) m.Group("/pulls/{index}", func() { |