mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 19:28:58 +01:00
Fix panic 500 page rendering (#14474)
This commit is contained in:
parent
afbddf1f0e
commit
0f726caf97
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,6 @@ func NormalRoutes() *web.Route {
|
|||
for _, middle := range commonMiddlewares() {
|
||||
r.Use(middle)
|
||||
}
|
||||
r.Use(Recovery())
|
||||
|
||||
r.Mount("/", WebRoutes())
|
||||
r.Mount("/api/v1", apiv1.Routes())
|
||||
|
@ -124,6 +123,8 @@ func WebRoutes() *web.Route {
|
|||
Domain: setting.SessionConfig.Domain,
|
||||
}))
|
||||
|
||||
r.Use(Recovery())
|
||||
|
||||
r.Use(public.Custom(
|
||||
&public.Options{
|
||||
SkipLogging: setting.DisableRouterLog,
|
||||
|
|
Loading…
Reference in a new issue