Browse Source

Litte bug fix

Unknown 10 years ago
parent
commit
b0084b1adc
2 changed files with 2 additions and 2 deletions
  1. 1 1
      gogs.go
  2. 1 1
      modules/middleware/repo.go

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/base"
 )
 
-const APP_VER = "0.3.4.0513 Alpha"
+const APP_VER = "0.3.4.0514 Alpha"
 
 func init() {
 	base.AppVer = APP_VER

+ 1 - 1
modules/middleware/repo.go

@@ -100,7 +100,7 @@ func RepoAssignment(redirect bool, args ...bool) martini.Handler {
 		}
 
 		// Check if the mirror repository owner(mirror repository doesn't have access).
-		if !ctx.Repo.IsOwner && repo.OwnerId == ctx.User.Id {
+		if ctx.IsSigned && !ctx.Repo.IsOwner && repo.OwnerId == ctx.User.Id {
 			ctx.Repo.IsOwner = true
 		}