Browse Source

Validate Issue Index before querying DB (#16406)

tags/v1.15.0-rc1
Norwin 4 years ago committed by GitHub
parent
commit
fb04cc7dbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      models/issue.go

3
models/issue.go

@ -1018,6 +1018,9 @@ func NewIssue(repo *Repository, issue *Issue, labelIDs []int64, uuids []string)
// GetIssueByIndex returns raw issue without loading attributes by index in a repository.
func GetIssueByIndex(repoID, index int64) (*Issue, error) {
if index < 1 {
return nil, ErrIssueNotExist{}
}
issue := &Issue{
RepoID: repoID,
Index: index,

Loading…
Cancel
Save