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

Commit e425e060 authored by Yorke Lee's avatar Yorke Lee Committed by Android (Google) Code Review
Browse files

Merge "Fix for busted call duration in CDMA conference" into lmp-dev

parents cf2a3643 a9173085
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -454,7 +454,9 @@ public final class InCallController extends CallsManagerListenerBase {
        if (!childCalls.isEmpty()) {
            connectTimeMillis = Long.MAX_VALUE;
            for (Call child : childCalls) {
                if (child.getConnectTimeMillis() > 0) {
                    connectTimeMillis = Math.min(child.getConnectTimeMillis(), connectTimeMillis);
                }
                childCallIds.add(mCallIdMapper.getCallId(child));
            }
        }