소스 검색

Fix query protected branch bug (#3563)

Signed-off-by: Wendell Sun <iwendellsun@gmail.com>
tags/v1.5.0-dev
Wendell Sun 6 년 전
부모
커밋
19bf4ddf80
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    2
      models/branches.go

+ 1
- 2
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

Loading…
취소
저장