@Serializable
data class CommentObject(
val id: Long,
val post: Long,
val parent: Long?,
val author: Long,
val content: String,
val created: LocalDateTime,
val updated: LocalDateTime
)
m
Mayank
01/20/2022, 12:18 PM
Can you try cleaning and rebuilding the project?
m
martmists
01/20/2022, 6:21 PM
The same error occurs
m
Mayank
01/20/2022, 7:41 PM
Can you share a sample project to reproduce the issue? I can try to build on my machine and see if I can find the cause