Fix for anonymous users to switch views

This commit is contained in:
Bwko 2016-11-19 16:53:34 +01:00 committed by GitHub
parent fc3ed8a1de
commit 7b75d93f3d
1 changed files with 5 additions and 3 deletions

View File

@ -23,13 +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
)