aboutsummaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2021-01-16 06:55:17 +0200
committerGitHub <noreply@github.com>2021-01-16 12:55:17 +0800
commit0a3c3357f388cc60d5f43a056ee2381e51586cff (patch)
treeaff5abc553a1f417c943802c0f2e7d21aab8305f /models/issue.go
parent2db4733c7d75b3ca3d1b2750f7b6ed53ac75303c (diff)
downloadgitea-0a3c3357f388cc60d5f43a056ee2381e51586cff.tar.gz
gitea-0a3c3357f388cc60d5f43a056ee2381e51586cff.zip
Sort issue search results by revelance (#14353)
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue.go b/models/issue.go
index b517f334c4..7731a59ed0 100644
--- a/models/issue.go
+++ b/models/issue.go
@@ -1682,7 +1682,7 @@ func SearchIssueIDsByKeyword(kw string, repoIDs []int64, limit, start int) (int6
)
var ids = make([]int64, 0, limit)
- err := x.Distinct("id").Table("issue").Where(cond).Limit(limit, start).Find(&ids)
+ err := x.Distinct("id").Table("issue").Where(cond).OrderBy("`updated_unix` DESC").Limit(limit, start).Find(&ids)
if err != nil {
return 0, nil, err
}