Update edit message history dialog to match designs.

This commit is contained in:
Clark
2023-05-15 10:00:11 -04:00
committed by Greyson Parrelli
parent 71c3bcdd29
commit 50ad005e7c
9 changed files with 18 additions and 24 deletions

View File

@@ -1943,7 +1943,7 @@ open class MessageTable(context: Context?, databaseHelper: SignalDatabase) : Dat
val cursor = readableDatabase.select(*MMS_PROJECTION)
.from(TABLE_NAME)
.where("$TABLE_NAME.$ID = ? OR $TABLE_NAME.$LATEST_REVISION_ID = ?", id, id)
.orderBy("$TABLE_NAME.$ID DESC")
.orderBy("$TABLE_NAME.$DATE_SENT ASC")
.run()
return mmsReaderFor(cursor)