Fix crash when updating profile and the source field exists, but some of _its_ fields don't (#2243)
This commit is contained in:
parent
821411b0eb
commit
d93a9b5753
1 changed files with 3 additions and 3 deletions
|
@ -79,9 +79,9 @@ data class Account(
|
|||
}
|
||||
|
||||
data class AccountSource(
|
||||
val privacy: Status.Visibility,
|
||||
val sensitive: Boolean,
|
||||
val note: String,
|
||||
val privacy: Status.Visibility?,
|
||||
val sensitive: Boolean?,
|
||||
val note: String?,
|
||||
val fields: List<StringField>?
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue