Mirror fix

This commit is contained in:
Unknown 2014-03-17 04:47:42 -04:00
parent 5c3054c3b7
commit 0d6aafdef5
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ package middleware
import (
"errors"
"strings"
"github.com/codegangsta/martini"
@ -23,7 +24,7 @@ func RepoAssignment(redirect bool) martini.Handler {
)
// get repository owner
ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == params["username"]
ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == strings.ToLower(params["username"])
if !ctx.Repo.IsOwner {
user, err = models.GetUserByName(params["username"])