adding some empty lines

This commit is contained in:
tibbi
2023-03-04 23:02:51 +01:00
parent 758d538e64
commit 98fc6eb0b4

View File

@ -26,9 +26,11 @@ class MmsSentReceiver : SendStatusReceiver() {
context.toast(msg = msg, length = Toast.LENGTH_LONG) context.toast(msg = msg, length = Toast.LENGTH_LONG)
Telephony.Mms.MESSAGE_BOX_FAILED Telephony.Mms.MESSAGE_BOX_FAILED
} }
val values = ContentValues(1).apply { val values = ContentValues(1).apply {
put(Telephony.Mms.MESSAGE_BOX, messageBox) put(Telephony.Mms.MESSAGE_BOX, messageBox)
} }
try { try {
context.contentResolver.update(uri, values, null, null) context.contentResolver.update(uri, values, null, null)
} catch (e: SQLiteException) { } catch (e: SQLiteException) {