We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b61782b commit 619898fCopy full SHA for 619898f
app/src/main/kotlin/com/simplemobiletools/smsmessenger/messaging/MessagingUtils.kt
@@ -177,9 +177,7 @@ class MessagingUtils(val context: Context) {
177
when (resultCode) {
178
SmsManager.RESULT_ERROR_NO_SERVICE -> context.getString(R.string.error_service_is_unavailable)
179
SmsManager.RESULT_ERROR_RADIO_OFF -> context.getString(R.string.error_radio_turned_off)
180
- else -> {
181
- context.getString(R.string.unknown_error_occurred_sending_message, resultCode)
182
- }
+ else -> context.getString(R.string.unknown_error_occurred_sending_message, resultCode)
183
}
184
185
context.toast(msg = msgId, length = Toast.LENGTH_LONG)
0 commit comments