1
0
Fork 0
forked from forgejo/forgejo

Improve issues.LoadProject (#22982)

issues.LoadProject() is no use
change `issues.loadProject(ctx)` to issues.LoadProject(ctx)
This commit is contained in:
yp05327 2023-02-21 04:21:56 +09:00 committed by GitHub
parent cfc7a4efdb
commit f4ce8c73fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View file

@ -347,7 +347,7 @@ func (issue *Issue) LoadAttributes(ctx context.Context) (err error) {
return
}
if err = issue.loadProject(ctx); err != nil {
if err = issue.LoadProject(ctx); err != nil {
return
}