removing a redundant check
This commit is contained in:
parent
7ea57de52b
commit
1eeb3c5356
1 changed files with 1 additions and 1 deletions
|
|
@ -154,7 +154,7 @@ fun Context.getMMS(threadId: Long? = null, getImageResolutions: Boolean = false,
|
||||||
} else if (threadId != null && dateFrom == -1) {
|
} else if (threadId != null && dateFrom == -1) {
|
||||||
selection = "${Sms.THREAD_ID} = ?"
|
selection = "${Sms.THREAD_ID} = ?"
|
||||||
selectionArgs = arrayOf(threadId.toString())
|
selectionArgs = arrayOf(threadId.toString())
|
||||||
} else if (threadId != null && dateFrom != -1) {
|
} else if (threadId != null) {
|
||||||
selection = "${Sms.THREAD_ID} = ? AND ${Sms.DATE} < ${dateFrom.toLong()}"
|
selection = "${Sms.THREAD_ID} = ? AND ${Sms.DATE} < ${dateFrom.toLong()}"
|
||||||
selectionArgs = arrayOf(threadId.toString())
|
selectionArgs = arrayOf(threadId.toString())
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue