fix crash when Account.displayName is null (#1667)
This commit is contained in:
parent
fde23f25d2
commit
88b8eca16a
4 changed files with 5 additions and 5 deletions
|
@ -166,7 +166,7 @@ fun Account.toEntity() =
|
|||
ConversationAccountEntity(
|
||||
id,
|
||||
username,
|
||||
displayName,
|
||||
displayName.orEmpty(),
|
||||
avatar,
|
||||
emojis ?: emptyList()
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue