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

Commit 5a0afa15 authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Fix string format in InCallController.

InCallController has an invalid string format for one of the external
call messages.

Test: Run unit tests; manual behavioral testing.
Fixes: 153400044
Change-Id: I379aada9e88c32a513a5fc18e16fbd2d0df96d02
parent 8071bb04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1011,7 +1011,7 @@ public class InCallController extends CallsManagerListenerBase {
            // The call was regular but it is now external.  We must now remove it from any
            // InCallServices which do not support external calls.
            // Remove the call by sending a call update indicating the call was disconnected.
            Log.i(this, "Removing external call %", call);
            Log.i(this, "Removing external call %s", call);
            for (Map.Entry<InCallServiceInfo, IInCallService> entry : mInCallServices.entrySet()) {
                InCallServiceInfo info = entry.getKey();
                if (info.isExternalCallsSupported()) {