diff options
-rw-r--r-- | models/branches.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/models/branches.go b/models/branches.go index 7cc0ebab4d..bf5d4fdb49 100644 --- a/models/branches.go +++ b/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, |