mirror of
https://github.com/go-gitea/gitea.git
synced 2025-04-21 08:58:45 +03:00
Fix non-alphabetic sorting of repo topics (#28938)
This commit is contained in:
@ -366,7 +366,7 @@ func syncTopicsInRepository(sess db.Engine, repoID int64) error {
|
|||||||
topicNames := make([]string, 0, 25)
|
topicNames := make([]string, 0, 25)
|
||||||
if err := sess.Table("topic").Cols("name").
|
if err := sess.Table("topic").Cols("name").
|
||||||
Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id").
|
Join("INNER", "repo_topic", "repo_topic.topic_id = topic.id").
|
||||||
Where("repo_topic.repo_id = ?", repoID).Desc("topic.repo_count").Find(&topicNames); err != nil {
|
Where("repo_topic.repo_id = ?", repoID).Asc("topic.name").Find(&topicNames); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user