mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 21:15:48 +00:00
Fix BioRecipientState if recipient does not have an e164.
This commit is contained in:
committed by
Cody Henthorne
parent
6bde2fd20a
commit
feb37eea2d
@@ -21,7 +21,7 @@ class BioRecipientState(
|
||||
val username: String = recipient.username.orElse("")
|
||||
val featuredBadge: Badge? = recipient.featuredBadge
|
||||
val profileName: ProfileName = recipient.profileName
|
||||
val e164: String = recipient.requireE164()
|
||||
val e164: String = recipient.e164.orElse("")
|
||||
val combinedAboutAndEmoji: String? = recipient.combinedAboutAndEmoji
|
||||
|
||||
override fun equals(other: Any?): Boolean {
|
||||
|
||||
Reference in New Issue
Block a user