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

Commit 549148fb authored by Etan Cohen's avatar Etan Cohen
Browse files

Make sure to always call update profile (remove short-circuit bug).

Guarantees that HD icon information is updated on any call session updates.

Bug: 18457066
Change-Id: I6c07f75aa355942b00eb270b25a15c9f113a34d2
parent 8b31b6fe
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