added remove contact.

This commit is contained in:
Asal Lotfi
2025-08-10 20:28:33 +03:30
parent 19e04c903a
commit 53008e2bd8
3 changed files with 104 additions and 31 deletions
@@ -277,7 +277,7 @@ public class MessageDatabase {
(UUID) rs.getObject("forwarded_by"),
(UUID) rs.getObject("forwarded_from"),
rs.getBoolean("is_deleted_globally"),
rs.getTimestamp("edited_at").toLocalDateTime()
(rs.getTimestamp("edited_at") != null) ? rs.getTimestamp("edited_at").toLocalDateTime() : null
);
}