mirror of
https://github.com/gogs/gogs.git
synced 2026-01-19 13:52:21 +01:00
explore: fix total repository number and page number do not match (#4441)
Because in the final repository list we use Distinct to remove duplicates, but didn't do so when count total number of repositories.
This commit is contained in:
@@ -1659,9 +1659,8 @@ func SearchRepositoryByName(opts *SearchRepoOptions) (repos []*Repository, _ int
|
||||
sess.And("repo.owner_id = ?", opts.OwnerID)
|
||||
}
|
||||
|
||||
var countSess xorm.Session
|
||||
countSess = *sess
|
||||
count, err := countSess.Count(new(Repository))
|
||||
// We need all fields (repo.*) in final list but only ID (repo.id) is good enough for counting.
|
||||
count, err = sess.Clone().Distinct("repo.id").Count(new(Repository))
|
||||
if err != nil {
|
||||
return nil, 0, fmt.Errorf("Count: %v", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user