Fix query protected branch bug (#3563)

Signed-off-by: Wendell Sun <iwendellsun@gmail.com>
This commit is contained in:
Wendell Sun 2018-02-23 10:14:15 +08:00 committed by Lunny Xiao
parent 845ba9d153
commit 19bf4ddf80
1 changed files with 1 additions and 2 deletions

View File

@ -6,7 +6,6 @@ package models
import (
"fmt"
"strings"
"time"
"code.gitea.io/gitea/modules/base"
@ -70,7 +69,7 @@ func GetProtectedBranchByRepoID(RepoID int64) ([]*ProtectedBranch, error) {
// GetProtectedBranchBy getting protected branch by ID/Name
func GetProtectedBranchBy(repoID int64, BranchName string) (*ProtectedBranch, error) {
rel := &ProtectedBranch{RepoID: repoID, BranchName: strings.ToLower(BranchName)}
rel := &ProtectedBranch{RepoID: repoID, BranchName: BranchName}
has, err := x.Get(rel)
if err != nil {
return nil, err