fix: auto-open chat with conversation ID, show listing title and time in messages
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user