mirror of
https://github.com/SimpleMobileTools/Simple-Dialer.git
synced 2025-04-04 21:41:06 +02:00
adding a null check at blocking calls from not stored contacts
This commit is contained in:
parent
d4f9fc28b7
commit
c892bc0492
@ -14,11 +14,13 @@ class SimpleCallScreeningService : CallScreeningService() {
|
|||||||
|
|
||||||
override fun onScreenCall(callDetails: Call.Details) {
|
override fun onScreenCall(callDetails: Call.Details) {
|
||||||
if (baseConfig.blockUnknownNumbers) {
|
if (baseConfig.blockUnknownNumbers) {
|
||||||
val simpleContactsHelper = SimpleContactsHelper(this)
|
if (callDetails.handle != null) {
|
||||||
val number = Uri.decode(callDetails.handle?.toString()).substringAfter("tel:")
|
val simpleContactsHelper = SimpleContactsHelper(this)
|
||||||
val privateCursor = getMyContactsCursor(false, true)
|
val number = Uri.decode(callDetails.handle?.toString() ?: "").substringAfter("tel:")
|
||||||
simpleContactsHelper.exists(number, privateCursor) { exists ->
|
val privateCursor = getMyContactsCursor(false, true)
|
||||||
respondToCall(callDetails, !exists)
|
simpleContactsHelper.exists(number, privateCursor) { exists ->
|
||||||
|
respondToCall(callDetails, !exists)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
respondToCall(callDetails, false)
|
respondToCall(callDetails, false)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user