1
0
Fork 0
forked from forgejo/forgejo

Use more IssueList instead of []*Issue (#26369)

This commit is contained in:
Lunny Xiao 2023-08-08 03:26:40 +08:00 committed by GitHub
parent ab0eb1c47b
commit f5dbac9d36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 8 deletions

View file

@ -53,7 +53,7 @@ func (issue *Issue) projectBoardID(ctx context.Context) int64 {
// LoadIssuesFromBoard load issues assigned to this board
func LoadIssuesFromBoard(ctx context.Context, b *project_model.Board) (IssueList, error) {
issueList := make([]*Issue, 0, 10)
issueList := make(IssueList, 0, 10)
if b.ID != 0 {
issues, err := Issues(ctx, &IssuesOptions{
@ -79,7 +79,7 @@ func LoadIssuesFromBoard(ctx context.Context, b *project_model.Board) (IssueList
issueList = append(issueList, issues...)
}
if err := IssueList(issueList).LoadComments(ctx); err != nil {
if err := issueList.LoadComments(ctx); err != nil {
return nil, err
}