mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-22 08:42:32 -05:00
Fix Null Pointer error for CommitStatusesHideActionsURL (#31731)
Fix https://github.com/go-gitea/gitea/pull/30156#discussion_r1695247028 Forgot fixing it in #31719 (cherry picked from commit 0a11bce87f07233d5f02554b8f3b4a2aabd37769)
This commit is contained in:
parent
43b184cf07
commit
49eb831663
1 changed files with 4 additions and 0 deletions
|
@ -506,6 +506,10 @@ func ConvertFromGitCommit(ctx context.Context, commits []*git.Commit, repo *repo
|
||||||
func CommitStatusesHideActionsURL(ctx context.Context, statuses []*CommitStatus) {
|
func CommitStatusesHideActionsURL(ctx context.Context, statuses []*CommitStatus) {
|
||||||
idToRepos := make(map[int64]*repo_model.Repository)
|
idToRepos := make(map[int64]*repo_model.Repository)
|
||||||
for _, status := range statuses {
|
for _, status := range statuses {
|
||||||
|
if status == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
if status.Repo == nil {
|
if status.Repo == nil {
|
||||||
status.Repo = idToRepos[status.RepoID]
|
status.Repo = idToRepos[status.RepoID]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue