Skip to content

Commit

Permalink
fix : split sperator
Browse files Browse the repository at this point in the history
  • Loading branch information
dlgocks1 committed Nov 15, 2023
1 parent df186d0 commit 4a8bcfd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ data class UserInfo(
) {

val baseList: List<String>
get() = base.split(".")
get() = base.split(",")
val keywordList: List<String>
get() = keyword.split(".")
get() = keyword.split(",")

companion object {

Expand Down

0 comments on commit 4a8bcfd

Please sign in to comment.