avoid setting a System wide default SIM card

This commit is contained in:
tibbi
2020-05-11 16:22:51 +02:00
parent 4dbc73f3de
commit ec72dc5d90
4 changed files with 12 additions and 12 deletions

View File

@ -259,8 +259,8 @@ class CallActivity : SimpleActivity() {
}
private fun showPhoneAccountPicker() {
getHandleToUse(intent, callContact!!.number) { handle, setAsDefault ->
CallManager.call?.phoneAccountSelected(handle, setAsDefault)
getHandleToUse(intent, callContact!!.number) { handle ->
CallManager.call?.phoneAccountSelected(handle, false)
}
}