mirror of
https://github.com/oxen-io/session-android.git
synced 2025-08-11 21:27:52 +00:00
Fix open group display name handling
This commit is contained in:
@@ -44,7 +44,7 @@ class Contact(val sessionID: String) {
|
||||
// In open groups, where it's more likely that multiple users have the same name,
|
||||
// we display a bit of the Session ID after a user's display name for added context.
|
||||
this.name?.let {
|
||||
return "${this.name}${this.sessionID.takeLast(8)}"
|
||||
return "${this.name} (...${this.sessionID.takeLast(8)})"
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
Reference in New Issue
Block a user