1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-26 15:06:09 +02:00

Fix wiki raw commit diff/patch view (#16891)

This commit is contained in:
6543 2021-08-31 04:22:54 +02:00 committed by GitHub
parent 8d7704b5a2
commit 6d97befddf
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -895,7 +895,7 @@ func RegisterRoutes(m *web.Route) {
m.Get("/_pages", repo.WikiPages)
m.Get("/{page}/_revision", repo.WikiRevision)
m.Get("/commit/{sha:[a-f0-9]{7,40}}", repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.SetWhitespaceBehavior, repo.Diff)
m.Get("/commit/{sha:[a-f0-9]{7,40}}.{:patch|diff}", repo.RawDiff)
m.Get("/commit/{sha:[a-f0-9]{7,40}}.{ext:patch|diff}", repo.RawDiff)
m.Group("", func() {
m.Combo("/_new").Get(repo.NewWiki).