Browse Source

#1474 logic fix

tags/v1.2.0-rc1
Unknwon 9 years ago
parent
commit
487a8bd0da
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      modules/avatar/avatar.go
  2. +2
    -2
      modules/middleware/auth.go

+ 1
- 1
modules/avatar/avatar.go View File

@@ -45,7 +45,7 @@ func UpdateGravatarSource() {
gravatarSource = setting.GravatarSource gravatarSource = setting.GravatarSource
if strings.HasPrefix(gravatarSource, "//") { if strings.HasPrefix(gravatarSource, "//") {
gravatarSource = "http:" + gravatarSource gravatarSource = "http:" + gravatarSource
} else if !strings.HasPrefix(gravatarSource, "http://") ||
} else if !strings.HasPrefix(gravatarSource, "http://") &&
!strings.HasPrefix(gravatarSource, "https://") { !strings.HasPrefix(gravatarSource, "https://") {
gravatarSource = "http://" + gravatarSource gravatarSource = "http://" + gravatarSource
} }


+ 2
- 2
modules/middleware/auth.go View File

@@ -119,7 +119,7 @@ func Toggle(options *ToggleOptions) macaron.Handler {
func ApiReqToken() macaron.Handler { func ApiReqToken() macaron.Handler {
return func(ctx *Context) { return func(ctx *Context) {
if !ctx.IsSigned { if !ctx.IsSigned {
ctx.Error(403)
ctx.Error(401)
return return
} }
} }
@@ -128,7 +128,7 @@ func ApiReqToken() macaron.Handler {
func ApiReqBasicAuth() macaron.Handler { func ApiReqBasicAuth() macaron.Handler {
return func(ctx *Context) { return func(ctx *Context) {
if !ctx.IsBasicAuth { if !ctx.IsBasicAuth {
ctx.Error(403)
ctx.Error(401)
return return
} }
} }


Loading…
Cancel
Save