Merge pull request #196 from Bwko/fix/commit-view-panic
Fix panic when no user is signed in
This commit is contained in:
commit
bd13c81684
1 changed files with 9 additions and 3 deletions
|
@ -23,10 +23,16 @@ func SetEditorconfigIfExists(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetDiffViewStyle(ctx *context.Context) {
|
func SetDiffViewStyle(ctx *context.Context) {
|
||||||
|
queryStyle := ctx.Query("style")
|
||||||
|
|
||||||
|
if !ctx.IsSigned {
|
||||||
|
ctx.Data["IsSplitStyle"] = queryStyle == "split"
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
var (
|
var (
|
||||||
userStyle = ctx.User.DiffViewStyle
|
userStyle = ctx.User.DiffViewStyle
|
||||||
queryStyle = ctx.Query("style")
|
style string
|
||||||
style string
|
|
||||||
)
|
)
|
||||||
|
|
||||||
if queryStyle == "unified" || queryStyle == "split" {
|
if queryStyle == "unified" || queryStyle == "split" {
|
||||||
|
|
Loading…
Reference in a new issue