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

Commit b28a6e05 authored by Hall Liu's avatar Hall Liu
Browse files

Fix faulty log statement

Bug: 177613111
Test: manual
Change-Id: I95830d4af1542671e6a06596e2661d41f124838e
parent cd347c4b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2459,7 +2459,7 @@ public abstract class ConnectionService extends Service {
    }

    private void onCallFilteringCompleted(String callId, boolean isBlocked, boolean isInContacts) {
        Log.i(this, "onCallFilteringCompleted(%s, %b, %b)", isBlocked, isInContacts);
        Log.i(this, "onCallFilteringCompleted(%b, %b)", isBlocked, isInContacts);
        Connection connection = findConnectionForAction(callId, "onCallFilteringCompleted");
        if (connection != null) {
            connection.onCallFilteringCompleted(isBlocked, isInContacts);