Ответ на файлы отображается не как фото а как файл, список чатов теперь не дохлая хуйня, динамично изменяется. Написал левый хуй? Появляется чат сразу, создал группу? Создалось, вышел? Вышел.(+ баг что на desktop режимах отображения при выходах чернеет экран)

This commit is contained in:
jganenok
2025-12-01 19:40:09 +07:00
parent 7e0d5eba20
commit 11f974c477
4 changed files with 367 additions and 124 deletions

View File

@@ -88,6 +88,8 @@ class Message {
bool get isDeleted => status == 'DELETED';
bool get isReply => link != null && link!['type'] == 'REPLY';
bool get isForwarded => link != null && link!['type'] == 'FORWARD';
bool get hasFileAttach =>
attaches.any((a) => (a['_type'] ?? a['type']) == 'FILE');
bool canEdit(int currentUserId) {
if (isDeleted) return false;