mirror of
https://github.com/oxen-io/session-android.git
synced 2025-02-20 13:28:27 +00:00
fix: initial convo generation fix for existing blinded convos (?)
This commit is contained in:
parent
bd05985cd6
commit
b495e59abb
@ -166,6 +166,7 @@ object ConfigurationMessageUtilities {
|
|||||||
} else {
|
} else {
|
||||||
UserPic(url, key)
|
UserPic(url, key)
|
||||||
}
|
}
|
||||||
|
|
||||||
val contactInfo = Contact(
|
val contactInfo = Contact(
|
||||||
id = contact.sessionID,
|
id = contact.sessionID,
|
||||||
name = contact.name.orEmpty(),
|
name = contact.name.orEmpty(),
|
||||||
@ -208,6 +209,7 @@ object ConfigurationMessageUtilities {
|
|||||||
recipient.isContactRecipient -> {
|
recipient.isContactRecipient -> {
|
||||||
if (recipient.isLocalNumber) null // this is handled by the user profile NTS data
|
if (recipient.isLocalNumber) null // this is handled by the user profile NTS data
|
||||||
else if (recipient.isOpenGroupInboxRecipient) null // specifically exclude
|
else if (recipient.isOpenGroupInboxRecipient) null // specifically exclude
|
||||||
|
else if (!recipient.address.serialize().startsWith(IdPrefix.STANDARD.value)) null
|
||||||
else convoConfig.getOrConstructOneToOne(recipient.address.serialize())
|
else convoConfig.getOrConstructOneToOne(recipient.address.serialize())
|
||||||
}
|
}
|
||||||
else -> null
|
else -> null
|
||||||
|
Loading…
x
Reference in New Issue
Block a user