mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 17:23:36 +01:00
Add base repo nil check (#5555)
Signed-off-by: Jonas Franz <info@jonasfranz.software>
This commit is contained in:
parent
8730ee0e45
commit
e726e4b828
@ -113,6 +113,15 @@ func (pr *PullRequest) loadIssue(e Engine) (err error) {
|
||||
|
||||
// LoadProtectedBranch loads the protected branch of the base branch
|
||||
func (pr *PullRequest) LoadProtectedBranch() (err error) {
|
||||
if pr.BaseRepo == nil {
|
||||
if pr.BaseRepoID == 0 {
|
||||
return nil
|
||||
}
|
||||
pr.BaseRepo, err = GetRepositoryByID(pr.BaseRepoID)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
}
|
||||
pr.ProtectedBranch, err = GetProtectedBranchBy(pr.BaseRepo.ID, pr.BaseBranch)
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user