1
0
Fork 0
forked from forgejo/forgejo

use in instead string join (#155)

This commit is contained in:
Lunny Xiao 2016-11-12 16:29:18 +08:00 committed by Thibault Meyer
parent 555d8b16cb
commit 30a37311f8
4 changed files with 5 additions and 9 deletions

View file

@ -14,8 +14,6 @@ import (
"github.com/go-xorm/xorm"
api "code.gitea.io/sdk/gitea"
"code.gitea.io/gitea/modules/base"
)
var labelColorPattern = regexp.MustCompile("#([a-fA-F0-9]{6})")
@ -140,7 +138,7 @@ func GetLabelsInRepoByIDs(repoID int64, labelIDs []int64) ([]*Label, error) {
labels := make([]*Label, 0, len(labelIDs))
return labels, x.
Where("repo_id = ?", repoID).
In("id", base.Int64sToStrings(labelIDs)).
In("id", labelIDs).
Asc("name").
Find(&labels)
}
@ -170,7 +168,7 @@ func getLabelsByIssueID(e Engine, issueID int64) ([]*Label, error) {
labels := make([]*Label, 0, len(labelIDs))
return labels, e.
Where("id > 0").
In("id", base.Int64sToStrings(labelIDs)).
In("id", labelIDs).
Asc("name").
Find(&labels)
}