mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
fix blank topic (#3948)
This commit is contained in:
@@ -21,7 +21,11 @@ func TopicPost(ctx *context.Context) {
|
||||
return
|
||||
}
|
||||
|
||||
topics := strings.Split(ctx.Query("topics"), ",")
|
||||
var topics = make([]string, 0)
|
||||
var topicsStr = strings.TrimSpace(ctx.Query("topics"))
|
||||
if len(topicsStr) > 0 {
|
||||
topics = strings.Split(topicsStr, ",")
|
||||
}
|
||||
|
||||
err := models.SaveTopics(ctx.Repo.Repository.ID, topics...)
|
||||
if err != nil {
|
||||
|
Reference in New Issue
Block a user