refactor: migrate MessagesFragment RecyclerView to Compose (#1133)

This commit is contained in:
Andre K 2024-09-09 06:15:27 -03:00 committed by GitHub
parent f2b06bd8d8
commit 9d5cf47762
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 374 additions and 343 deletions

View file

@ -72,7 +72,7 @@ interface PacketDao {
SELECT * FROM packet
WHERE (myNodeNum = 0 OR myNodeNum = (SELECT myNodeNum FROM MyNodeInfo))
AND port_num = 1 AND contact_key = :contact
ORDER BY received_time ASC
ORDER BY received_time DESC
"""
)
fun getMessagesFrom(contact: String): Flow<List<Packet>>