Proper display of unresolved names in mentions (#1530)
* Fix issue with span being the full length * Making sure a mention with a username without a resolved name still displayed with the appropriate style with the truncated ispull/1534/head
parent
bbb1b2b517
commit
15b3b18321
@ -1,4 +1,4 @@
|
||||
package org.session.libsession.utilities
|
||||
|
||||
fun truncateIdForDisplay(id: String): String =
|
||||
id.takeIf { it.length > 8 }?.apply{ "${take(4)}…${takeLast(4)}" } ?: id
|
||||
id.takeIf { it.length > 8 }?.run{ "${take(4)}…${takeLast(4)}" } ?: id
|
||||
|
Loading…
Reference in New Issue