fix "..." in user's names when "Use contact names" is true

This commit is contained in:
2026-05-30 20:35:37 +03:00
parent 8c053905ce
commit 6b91d388a2
@@ -52,7 +52,7 @@ fun VkConvo.extractTitle(
} else {
val userName = user?.let { user ->
if (useContactName) {
VkMemoryCache.getContact(user.id)?.name
VkMemoryCache.getContact(user.id)?.name ?: user.fullName
} else {
user.fullName
}