1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-15 05:58:27 +00:00

On tag/branch-exist check, dont panic if repo is nil (#21787) (#21788)

backport #21787
This commit is contained in:
6543
2022-12-04 11:29:19 +01:00
committed by GitHub
parent c7770fa502
commit 9819a47717
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ func (repo *Repository) IsReferenceExist(name string) bool {
// IsBranchExist returns true if given branch exists in current repository.
func (repo *Repository) IsBranchExist(name string) bool {
if name == "" {
if repo == nil || name == "" {
return false
}

View File

@@ -16,7 +16,7 @@ import (
// IsTagExist returns true if given tag exists in the repository.
func (repo *Repository) IsTagExist(name string) bool {
if name == "" {
if repo == nil || name == "" {
return false
}