fix: remove duplicate tag (#450)

fix: remove dumplicate tag
This commit is contained in:
boojack 2022-11-12 11:31:16 +08:00 committed by GitHub
parent fe05e6a464
commit bf07ab9e2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,9 +47,15 @@ func (s *Server) registerTagRoutes(g *echo.Group) {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find memo list").SetInternal(err)
}
tagList := []string{}
tagMapSet := make(map[string]bool)
for _, memo := range memoList {
tagList = append(tagList, findTagListFromMemoContent(memo.Content)...)
for _, tag := range findTagListFromMemoContent(memo.Content) {
tagMapSet[tag] = true
}
}
tagList := []string{}
for tag := range tagMapSet {
tagList = append(tagList, tag)
}
sort.Strings(tagList)