Skip to content

Commit

Permalink
Fixed bug: getDetailedUserInfo() didn't worked for those without the …
Browse files Browse the repository at this point in the history
…official selftest app installed(for the lack of deviceUuid)
  • Loading branch information
lhwdev committed Nov 15, 2020
1 parent f0616ba commit b3debd8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ data class DetailedUserInfo(
@SerialName("registerYmd") val lastRegisterDate: String?,
@SerialName("registerDtm") val lastRegisterAt: String?,
@SerialName("isHealthy") val isHealthy: Boolean,
@SerialName("deviceUuid") val deviceUuid: String?,
@SerialName("deviceUuid") val deviceUuid: String? = null,
) {
fun toUserInfoString() = "$userName($schoolName)"
fun toLastRegisterInfoString() =
Expand Down

0 comments on commit b3debd8

Please sign in to comment.