Fix non-alphabetic sorting of repo topics (#28938)

pull/28932/head^2
wackbyte 1 year ago committed by GitHub
parent 534917d576
commit a240d5dfa7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -366,7 +366,7 @@ func syncTopicsInRepository(sess db.Engine, repoID int64) error {
topicNames := make([]string, 0, 25)
if err := sess.Table("topic").Cols("name").
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
}

Loading…
Cancel
Save