1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-09 21:05:47 +00:00

Merge pull request #196 from Bwko/fix/commit-view-panic

Fix panic when no user is signed in
This commit is contained in:
Andrey Nering 2016-11-19 14:30:37 -02:00 committed by GitHub
commit bd13c81684

View File

@ -23,9 +23,15 @@ func SetEditorconfigIfExists(ctx *context.Context) {
}
func SetDiffViewStyle(ctx *context.Context) {
queryStyle := ctx.Query("style")
if !ctx.IsSigned {
ctx.Data["IsSplitStyle"] = queryStyle == "split"
return
}
var (
userStyle = ctx.User.DiffViewStyle
queryStyle = ctx.Query("style")
style string
)