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

Commit 7ae9eed7 authored by Yorke Lee's avatar Yorke Lee
Browse files

Fix typo when forcing recalculation of call capabilities

Bug: 18071704
Change-Id: Ib389ce72bc43e2fc073af5afc6383f3250046b27
parent c9fe671f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1002,7 +1002,7 @@ public final class CallsManager extends Call.ListenerBase {
        // recalculation of the call's current capabilities by forcing an update. (See
        // InCallController.toParcelableCall()).
        for (Call otherCall : mCalls) {
            otherCall.setCallCapabilities(call.getCallCapabilities(), true /* forceUpdate */);
            otherCall.setCallCapabilities(otherCall.getCallCapabilities(), true /* forceUpdate */);
        }
    }