Browse Source

Remove redudant issue LoadAttributes() calls (#2614)

for-closed-social
Morlinest 7 years ago
committed by Andrey Nering
parent
commit
cc84ca40d7
2 changed files with 1 additions and 12 deletions
  1. +1
    -6
      models/issue.go
  2. +0
    -6
      routers/api/v1/repo/issue.go

+ 1
- 6
models/issue.go View File

@ -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.

+ 0
- 6
routers/api/v1/repo/issue.go View File

@ -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