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

Commit f5960ecb authored by Pavel Zhamaitsiak's avatar Pavel Zhamaitsiak Committed by Android (Google) Code Review
Browse files

Merge "Make sure to always call update profile (remove short-circuit bug)." into lmp-mr1-dev

parents c3c49a26 549148fb
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -564,7 +564,9 @@ public class ImsPhoneConnection extends Connection {
            onStartedHolding();
        }

        return mParent.update(this, imsCall, state) || updateMediaCapabilities(imsCall);
        boolean updateParent = mParent.update(this, imsCall, state);
        boolean updateMediaCapabilities = updateMediaCapabilities(imsCall);
        return updateParent || updateMediaCapabilities;
    }

    @Override