Fix the protected branch panic issue (#3567) (#3569)

Signed-off-by: Wendell Sun <iwendellsun@gmail.com>
pull/3570/head^2
Wendell Sun 6 years ago committed by Lauris BH
parent e55eaa8545
commit d87fb0a6fd
  1. 4
      models/branches.go

@ -156,6 +156,10 @@ func (repo *Repository) GetProtectedBranches() ([]*ProtectedBranch, error) {
// IsProtectedBranch checks if branch is protected
func (repo *Repository) IsProtectedBranch(branchName string, doer *User) (bool, error) {
if doer == nil {
return true, nil
}
protectedBranch := &ProtectedBranch{
RepoID: repo.ID,
BranchName: branchName,

Loading…
Cancel
Save