[F] Fix nullable

This commit is contained in:
Azalea
2024-12-20 10:04:48 -05:00
parent f37a32ceab
commit 452b077822

View File

@@ -131,7 +131,7 @@ class Chu3UserData : BaseEntity(), IUserData {
@JsonInclude @JsonInclude
@Transient @Transient
var rankUpChallengeResults: List<Any> = emptyList() var rankUpChallengeResults: List<Any>? = null
// When serialized, this field should be "isNetBattleHost", not "netBattleHost" // When serialized, this field should be "isNetBattleHost", not "netBattleHost"
@JsonProperty("isNetBattleHost") @JsonProperty("isNetBattleHost")