mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-12-26 05:33:52 +03:00
Add more load functions to make sure the reference object loaded (#32901)
Fix #32897 (cherry picked from commit dc8f59baa54d4f47edab6feb76a6903947584326)
This commit is contained in:
parent
1e7b2cb6c9
commit
a5399b473f
2 changed files with 9 additions and 0 deletions
|
@ -29,6 +29,11 @@ func ToAPIPullRequest(ctx context.Context, pr *issues_model.PullRequest, doer *u
|
||||||
err error
|
err error
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if err = pr.LoadIssue(ctx); err != nil {
|
||||||
|
log.Error("pr.LoadIssue[%d]: %v", pr.ID, err)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
if err = pr.Issue.LoadRepo(ctx); err != nil {
|
if err = pr.Issue.LoadRepo(ctx); err != nil {
|
||||||
log.Error("pr.Issue.LoadRepo[%d]: %v", pr.ID, err)
|
log.Error("pr.Issue.LoadRepo[%d]: %v", pr.ID, err)
|
||||||
return nil
|
return nil
|
||||||
|
|
|
@ -409,6 +409,10 @@ func (m *webhookNotifier) CreateIssueComment(ctx context.Context, doer *user_mod
|
||||||
var pullRequest *api.PullRequest
|
var pullRequest *api.PullRequest
|
||||||
if issue.IsPull {
|
if issue.IsPull {
|
||||||
eventType = webhook_module.HookEventPullRequestComment
|
eventType = webhook_module.HookEventPullRequestComment
|
||||||
|
if err := issue.LoadPullRequest(ctx); err != nil {
|
||||||
|
log.Error("LoadPullRequest: %v", err)
|
||||||
|
return
|
||||||
|
}
|
||||||
pullRequest = convert.ToAPIPullRequest(ctx, issue.PullRequest, doer)
|
pullRequest = convert.ToAPIPullRequest(ctx, issue.PullRequest, doer)
|
||||||
} else {
|
} else {
|
||||||
eventType = webhook_module.HookEventIssueComment
|
eventType = webhook_module.HookEventIssueComment
|
||||||
|
|
Loading…
Reference in a new issue