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

Fix panic when no user is signed in
tokarchuk/v1.17
Andrey Nering 8 years ago committed by GitHub
commit bd13c81684
  1. 12
      routers/repo/middlewares.go

@ -23,10 +23,16 @@ 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
userStyle = ctx.User.DiffViewStyle
style string
)
if queryStyle == "unified" || queryStyle == "split" {

Loading…
Cancel
Save