mirror of https://github.com/go-gitea/gitea.git
* Migration: drop to long repo topics * Update modules/migrations/gitea_uploader.go
This commit is contained in:
parent
206b66a184
commit
4a738a8f16
|
@ -154,6 +154,15 @@ func (g *GiteaLocalUploader) Close() {
|
||||||
|
|
||||||
// CreateTopics creates topics
|
// CreateTopics creates topics
|
||||||
func (g *GiteaLocalUploader) CreateTopics(topics ...string) error {
|
func (g *GiteaLocalUploader) CreateTopics(topics ...string) error {
|
||||||
|
// ignore topics to long for the db
|
||||||
|
c := 0
|
||||||
|
for i := range topics {
|
||||||
|
if len(topics[i]) <= 25 {
|
||||||
|
topics[c] = topics[i]
|
||||||
|
c++
|
||||||
|
}
|
||||||
|
}
|
||||||
|
topics = topics[:c]
|
||||||
return models.SaveTopics(g.repo.ID, topics...)
|
return models.SaveTopics(g.repo.ID, topics...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue