mirror of
https://gitlab.com/xynngh/YetAnotherCallBlocker.git
synced 2025-06-05 22:19:12 +02:00
Don't block call from contacts
This commit is contained in:
@ -57,8 +57,8 @@ public class CallReceiver extends BroadcastReceiver {
|
||||
NumberInfo numberInfo = DatabaseSingleton.getNumberInfo(incomingNumber);
|
||||
|
||||
boolean blocked = false;
|
||||
if (!isOnCall && numberInfo.rating == NumberInfo.Rating.NEGATIVE
|
||||
&& blockCalls) {
|
||||
if (blockCalls && !isOnCall && numberInfo.rating == NumberInfo.Rating.NEGATIVE
|
||||
&& numberInfo.contactItem == null) {
|
||||
blocked = rejectCall(context);
|
||||
|
||||
if (blocked) {
|
||||
|
Reference in New Issue
Block a user