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

Commit b3cbaa6f authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Change mWasVideoCall logic." am: 9d48e878

Original change: https://android-review.googlesource.com/c/platform/frameworks/opt/net/ims/+/1515898

Change-Id: Ibbbabc4f88261df1ec13ceccea647fb0ffb732cb
parents 4c259451 9d48e878
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3755,8 +3755,7 @@ public class ImsCall implements ICall {
     * @param profile The current {@link ImsCallProfile} for the call.
     */
    private void trackVideoStateHistory(ImsCallProfile profile) {
        mWasVideoCall = mWasVideoCall
                || profile != null ? profile.isVideoCall() : false;
        mWasVideoCall = mWasVideoCall || ( profile != null && profile.isVideoCall());
    }

    /**