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

Commit a0ad17a7 authored by Jordan Liu's avatar Jordan Liu Committed by android-build-merger
Browse files

Merge "Convert total call quality duration to seconds"

am: 7546d316

Change-Id: Ic8fd4b193478f20221facb92ce9364c1a5126788
parents 95db602b 7546d316
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -267,7 +267,8 @@ public class CallQualityMetrics {
        // handover from IMS->CS->IMS, but this is currently not possible
        // handover from IMS->CS->IMS, but this is currently not possible
        // TODO(b/130302396) this also may be possible when we put a call on hold and continue with
        // TODO(b/130302396) this also may be possible when we put a call on hold and continue with
        // another call
        // another call
        summary.totalDurationWithQualityInformationInSeconds = mLastCallQuality.getCallDuration();
        summary.totalDurationWithQualityInformationInSeconds =
                mLastCallQuality.getCallDuration() / 1000;
        if (mWorstSsWithGoodDlQuality != null) {
        if (mWorstSsWithGoodDlQuality != null) {
            summary.snapshotOfWorstSsWithGoodQuality =
            summary.snapshotOfWorstSsWithGoodQuality =
                    toCallQualityProto(mWorstSsWithGoodDlQuality.first);
                    toCallQualityProto(mWorstSsWithGoodDlQuality.first);
@@ -304,7 +305,8 @@ public class CallQualityMetrics {
        // handover from IMS->CS->IMS, but this is currently not possible
        // handover from IMS->CS->IMS, but this is currently not possible
        // TODO(b/130302396) this also may be possible when we put a call on hold and continue with
        // TODO(b/130302396) this also may be possible when we put a call on hold and continue with
        // another call
        // another call
        summary.totalDurationWithQualityInformationInSeconds = mLastCallQuality.getCallDuration();
        summary.totalDurationWithQualityInformationInSeconds =
                mLastCallQuality.getCallDuration() / 1000;
        if (mWorstSsWithGoodUlQuality != null) {
        if (mWorstSsWithGoodUlQuality != null) {
            summary.snapshotOfWorstSsWithGoodQuality =
            summary.snapshotOfWorstSsWithGoodQuality =
                    toCallQualityProto(mWorstSsWithGoodUlQuality.first);
                    toCallQualityProto(mWorstSsWithGoodUlQuality.first);