summaryrefslogtreecommitdiffstats
path: root/models
diff options
context:
space:
mode:
authorWendell Sun <iwendellsun@gmail.com>2018-02-23 10:14:15 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2018-02-22 20:14:15 -0600
commit19bf4ddf800dd405bddbafee7574ff4df07ed275 (patch)
tree2a1454ff20a3506d963164f1a7820797ae651f91 /models
parent845ba9d1537eb1012bb0d448265b5346ef14d2d3 (diff)
downloadgitea-19bf4ddf800dd405bddbafee7574ff4df07ed275.tar.gz
gitea-19bf4ddf800dd405bddbafee7574ff4df07ed275.zip
Fix query protected branch bug (#3563)
Signed-off-by: Wendell Sun <iwendellsun@gmail.com>
Diffstat (limited to 'models')
-rw-r--r--models/branches.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/models/branches.go b/models/branches.go
index 7cc0ebab4d..d1921d5500 100644
--- a/models/branches.go
+++ b/models/branches.go
@@ -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