fix: фиксики

This commit is contained in:
Jganenokk
2026-07-23 21:14:33 +07:00
parent e39cb9dec9
commit d0b27803bf
6 changed files with 103 additions and 99 deletions
+5
View File
@@ -417,6 +417,11 @@ class ContactsModule {
return rows.map(CachedContact.fromDbRow).toList();
}
static Future<CachedContact?> getContact(int accountId, int id) async {
final row = await AppDatabase.loadContact(accountId, id);
return row == null ? null : CachedContact.fromDbRow(row);
}
static const List<String> _debugFirstNames = [
'Алиса', 'Борис', 'Вера', 'Глеб', 'Дарья', 'Егор', 'Жанна', 'Захар',
'Ирина', 'Кирилл', 'Лия', 'Максим', 'Нина', 'Олег', 'Полина', 'Роман',