fix: failed to parse comment when commenting

This commit is contained in:
rebelonion 2024-02-26 03:10:52 -06:00
parent 7f943d34ac
commit e93ca5d86e

View file

@ -417,7 +417,7 @@ data class ReturnedComment(
@Serializable(with = NumericBooleanSerializer::class)
val deleted: Boolean?,
@SerialName("tag")
val tag: Int?,
val tag: Int? = null,
)
object NumericBooleanSerializer : KSerializer<Boolean> {