mirror of
https://github.com/oxen-io/session-android.git
synced 2025-04-24 08:01:28 +00:00
Improve check if author is own user when quoting messages
This commit is contained in:
parent
0f04929bf9
commit
e595cfb504
@ -72,7 +72,7 @@ class QuoteView @JvmOverloads constructor(context: Context, attrs: AttributeSet?
|
|||||||
// Author
|
// Author
|
||||||
val author = contactDb.getContactWithSessionID(authorPublicKey)
|
val author = contactDb.getContactWithSessionID(authorPublicKey)
|
||||||
val localNumber = TextSecurePreferences.getLocalNumber(context)
|
val localNumber = TextSecurePreferences.getLocalNumber(context)
|
||||||
val quoteIsLocalUser = localNumber != null && author == null
|
val quoteIsLocalUser = localNumber != null && localNumber != null && authorPublicKey == localNumber
|
||||||
|
|
||||||
val authorDisplayName =
|
val authorDisplayName =
|
||||||
if (quoteIsLocalUser) context.getString(R.string.QuoteView_you)
|
if (quoteIsLocalUser) context.getString(R.string.QuoteView_you)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user