[F] Fix nullable

matching
Azalea 2024-12-20 10:04:48 -05:00
parent f37a32ceab
commit 452b077822
1 changed files with 1 additions and 1 deletions

View File

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