Calls: убран "Start New Call", добавлены аватарки и исправлена область нажатия строки

This commit is contained in:
2026-03-31 19:32:11 +05:00
parent 464fae37a9
commit 0470b306a9
8 changed files with 85 additions and 66 deletions

View File

@@ -221,6 +221,8 @@ private extension ChatListSearchContent {
if verified > 0 { return verified }
if title.caseInsensitiveCompare("Rosetta") == .orderedSame { return 1 }
if username.caseInsensitiveCompare("rosetta") == .orderedSame { return 1 }
if title.caseInsensitiveCompare("freddy") == .orderedSame { return 1 }
if username.caseInsensitiveCompare("freddy") == .orderedSame { return 1 }
if SystemAccounts.isSystemAccount(publicKey) { return 1 }
return 0
}