mirror of
https://github.com/SimpleMobileTools/Simple-SMS-Messenger.git
synced 2025-06-05 21:49:22 +02:00
formatting some code
This commit is contained in:
@@ -155,15 +155,15 @@ fun Context.getMMS(threadId: Long? = null, getImageResolutions: Boolean = false,
|
|||||||
Mms.STATUS
|
Mms.STATUS
|
||||||
)
|
)
|
||||||
|
|
||||||
var selection:String? = null
|
var selection: String? = null
|
||||||
var selectionArgs:Array<String>? = null
|
var selectionArgs: Array<String>? = null
|
||||||
|
|
||||||
if (threadId == null && dateFrom != -1) {
|
if (threadId == null && dateFrom != -1) {
|
||||||
selection = "${Sms.DATE} < ${dateFrom.toLong()}" //Should not multiply 1000 here, because date in mms's database is different from sms's.
|
selection = "${Sms.DATE} < ${dateFrom.toLong()}" //Should not multiply 1000 here, because date in mms's database is different from sms's.
|
||||||
} 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 && dateFrom != -1) {
|
||||||
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())
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user