Remove redudant issue LoadAttributes() calls (#2614)

release/v1.3
Morlinest 7 years ago committed by Andrey Nering
parent 339d7de409
commit cc84ca40d7

@ -984,12 +984,7 @@ func GetIssueByRef(ref string) (*Issue, error) {
return nil, err
}
issue, err := GetIssueByIndex(repo.ID, index)
if err != nil {
return nil, err
}
return issue, issue.LoadAttributes()
return GetIssueByIndex(repo.ID, index)
}
// GetRawIssueByIndex returns raw issue without loading attributes by index in a repository.

@ -39,12 +39,6 @@ func ListIssues(ctx *context.APIContext) {
return
}
err = models.IssueList(issues).LoadAttributes()
if err != nil {
ctx.Error(500, "LoadAttributes", err)
return
}
apiIssues := make([]*api.Issue, len(issues))
for i := range issues {
apiIssues[i] = issues[i].APIFormat()

Loading…
Cancel
Save