summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
Diffstat (limited to 'routers')
-rw-r--r--routers/repo/topic.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/routers/repo/topic.go b/routers/repo/topic.go
index 90ef0d189c..2a43d53ff0 100644
--- a/routers/repo/topic.go
+++ b/routers/repo/topic.go
@@ -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 {