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

Commit 9d48e878 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Change mWasVideoCall logic."

parents 124f980e 6d82d941
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());
    }

    /**