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

Commit f3971f30 authored by Bart Sears's avatar Bart Sears Committed by Android (Google) Code Review
Browse files

Merge "Fix HD icon shown for MO VoLTE call when it shouldn't" into mnc-dev

parents 463068b8 309bfd91
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -605,10 +605,11 @@ public class ImsPhoneConnection extends Connection {
        }

        boolean updateParent = mParent.update(this, imsCall, state);
        boolean updateMediaCapabilities = updateMediaCapabilities(imsCall);
        boolean updateWifiState = updateWifiState();
        boolean updateAddressDisplay = updateAddressDisplay(imsCall);

        return updateParent || updateWifiState || updateAddressDisplay;
        return updateParent || updateMediaCapabilities || updateWifiState || updateAddressDisplay;
    }

    @Override