fix: Prevent crash showing profile if account has null `createdAt` field
This commit is contained in:
parent
d4eed2fbf8
commit
df45c0cd96
|
@ -503,13 +503,15 @@ class AccountActivity :
|
|||
private fun updateAccountJoinedDate() {
|
||||
loadedAccount?.let { account ->
|
||||
try {
|
||||
binding.accountDateJoined.text = resources.getString(
|
||||
R.string.account_date_joined,
|
||||
SimpleDateFormat("MMMM, yyyy", Locale.getDefault()).format(account.createdAt),
|
||||
)
|
||||
binding.accountDateJoined.visibility = View.VISIBLE
|
||||
account.createdAt?.let { createdAt ->
|
||||
binding.accountDateJoined.text = resources.getString(
|
||||
R.string.account_date_joined,
|
||||
SimpleDateFormat("MMMM, yyyy", Locale.getDefault()).format(createdAt),
|
||||
)
|
||||
binding.accountDateJoined.show()
|
||||
} ?: binding.accountDateJoined.hide()
|
||||
} catch (e: ParseException) {
|
||||
binding.accountDateJoined.visibility = View.GONE
|
||||
binding.accountDateJoined.hide()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,8 +23,8 @@ data class Account(
|
|||
val id: String,
|
||||
@SerializedName("username") val localUsername: String,
|
||||
@SerializedName("acct") val username: String,
|
||||
@SerializedName("display_name") val displayName: String?, // should never be null per Api definition, but some servers break the contract
|
||||
@SerializedName("created_at") val createdAt: Date,
|
||||
@SerializedName("display_name") val displayName: String?, // should never be null per API definition, but some servers break the contract
|
||||
@SerializedName("created_at") val createdAt: Date?, // should never be null per API definition, but some servers break the contract
|
||||
val note: String,
|
||||
val url: String,
|
||||
val avatar: String,
|
||||
|
|
Loading…
Reference in New Issue