fix: auto-open chat with conversation ID, show listing title and time in messages

This commit is contained in:
2026-02-10 07:58:16 +01:00
parent 73769d6af2
commit 8479fa2071
11 changed files with 73 additions and 22 deletions

View File

@@ -43,6 +43,12 @@ class ConversationsService {
}
}
conversations.sort((a, b) => {
const da = new Date(b.date_updated || b.date_created)
const db = new Date(a.date_updated || a.date_created)
return da - db
})
return conversations.map(conv => {
const isP1 = allHashes.has(conv.participant_hash_1)
return {