mirror of
https://github.com/mollyim/mollyim-insider-android.git
synced 2025-05-13 05:40:53 +01:00
Fix username getting prematurely removed from recipient.
This commit is contained in:
parent
614ecfaad5
commit
97653c04b0
1 changed files with 1 additions and 1 deletions
|
@ -519,7 +519,7 @@ class Recipient(
|
|||
}
|
||||
|
||||
fun hasNonUsernameDisplayName(context: Context): Boolean {
|
||||
return getNameFromLocalData(context) != null
|
||||
return getNameFromLocalData(context).isNotNullOrBlank()
|
||||
}
|
||||
|
||||
/** A full-length display name for this user, ignoring the username. */
|
||||
|
|
Loading…
Reference in a new issue