mirror of
https://github.com/SimpleMobileTools/Simple-Dialer.git
synced 2025-04-03 21:11:11 +02:00
adding a crashfix at SIM selector
This commit is contained in:
parent
2062a58f2f
commit
787e03de2f
@ -36,7 +36,7 @@ fun SimpleActivity.launchCreateNewContactIntent() {
|
||||
fun BaseSimpleActivity.callContactWithSim(recipient: String, useMainSIM: Boolean) {
|
||||
handlePermission(PERMISSION_READ_PHONE_STATE) {
|
||||
val wantedSimIndex = if (useMainSIM) 0 else 1
|
||||
val handle = getAvailableSIMCardLabels().sortedBy { it.id }[wantedSimIndex].handle
|
||||
val handle = getAvailableSIMCardLabels().sortedBy { it.id }.getOrNull(wantedSimIndex)?.handle
|
||||
launchCallIntent(recipient, handle)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user