forked from forgejo/forgejo
fix blank topic (#3948)
This commit is contained in:
parent
bc8400747a
commit
c14870c5ac
2 changed files with 9 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue