do not show empty conversations on the main screen

This commit is contained in:
tibbi 2020-04-11 23:26:50 +02:00
parent e966b7bccd
commit 6d4f0bf7aa
1 changed files with 2 additions and 2 deletions

View File

@ -173,8 +173,8 @@ fun Context.getConversations(): ArrayList<Conversation> {
Threads.RECIPIENT_IDS
)
val selection = "${Threads.ARCHIVED} = ?"
val selectionArgs = arrayOf("0")
val selection = "${Threads.ARCHIVED} = ? AND ${Threads.MESSAGE_COUNT} > ?"
val selectionArgs = arrayOf("0", "0")
val conversations = ArrayList<Conversation>()
queryCursor(uri, projection, selection, selectionArgs, showErrors = true) { cursor ->
val id = cursor.getIntValue(Threads._ID)