Skip to content

Commit

Permalink
shared: Session: Use String characters instead of String class instance
Browse files Browse the repository at this point in the history
Gives weird build errors since Kotlin 2.0.0

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
  • Loading branch information
theimpulson committed Nov 28, 2024
1 parent 3007efb commit 40a5205
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ data class Session(

@Serializable
data class Localized(
val description: String = String(),
val description: String = "",
val title: String
)
}

0 comments on commit 40a5205

Please sign in to comment.