Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13359945 authored by Tyler Gunn's avatar Tyler Gunn Committed by Android (Google) Code Review
Browse files

Merge "Ensure external calls do not go through call blocking code." into nyc-mr1-dev

parents 7e632d2c a4a838a2
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -534,6 +534,9 @@ public class InCallPresenter implements CallList.Listener,
            Log.i(this, "Not attempting to block incoming call due to recent emergency call");
            Log.i(this, "Not attempting to block incoming call due to recent emergency call");
            return false;
            return false;
        }
        }
        if (call.getDetails().hasProperty(CallSdkCompat.Details.PROPERTY_IS_EXTERNAL_CALL)) {
            return false;
        }


        return true;
        return true;
    }
    }