test #322

Merged
klaus merged 6 commits from test into main 2025-06-02 12:41:46 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 2268f4a3fc - Show all commits

View File

@ -165,8 +165,8 @@ class CreatorAdminContentService(
val normalizedTags = request.tags
.replace("#", " #")
.split(" ")
.map { if (it.startsWith("#")) it else "#$it" }
.map { it.trim() }
.map { if (it.startsWith("#")) it else "#$it" }
.filter { it.isNotBlank() }
.distinct()