0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-11-21 13:32:03 +01:00

Fix nil panic if repo doesn't exist (#32501) (#32502)

Backport #32501 by wxiaoguang

fix  #32496

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Giteabot 2024-11-14 12:47:04 +08:00 committed by GitHub
parent a4263d341c
commit f79f8e13e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -248,6 +248,9 @@ func (a *Action) GetActDisplayNameTitle(ctx context.Context) string {
// GetRepoUserName returns the name of the action repository owner.
func (a *Action) GetRepoUserName(ctx context.Context) string {
a.loadRepo(ctx)
if a.Repo == nil {
return "(non-existing-repo)"
}
return a.Repo.OwnerName
}
@ -260,6 +263,9 @@ func (a *Action) ShortRepoUserName(ctx context.Context) string {
// GetRepoName returns the name of the action repository.
func (a *Action) GetRepoName(ctx context.Context) string {
a.loadRepo(ctx)
if a.Repo == nil {
return "(non-existing-repo)"
}
return a.Repo.Name
}