Small refactor for loading PRs (#22652)

forgejo
Lunny Xiao 1 year ago committed by GitHub
parent 3f2e721372
commit 4e946e5a7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -173,8 +173,9 @@ func (prs PullRequestList) loadAttributes(ctx context.Context) error {
for i := range issues { for i := range issues {
set[issues[i].ID] = issues[i] set[issues[i].ID] = issues[i]
} }
for i := range prs { for _, pr := range prs {
prs[i].Issue = set[prs[i].IssueID] pr.Issue = set[pr.IssueID]
pr.Issue.PullRequest = pr // panic here means issueIDs and prs are not in sync
} }
return nil return nil
} }

@ -298,7 +298,6 @@ func AddTestPullRequestTask(doer *user_model.User, repoID int64, branch string,
} }
} }
pr.Issue.PullRequest = pr
notification.NotifyPullRequestSynchronized(ctx, doer, pr) notification.NotifyPullRequestSynchronized(ctx, doer, pr)
} }
} }

Loading…
Cancel
Save