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

Commit ecf99da5 authored by Etan Cohen's avatar Etan Cohen
Browse files

Fix incorrect reference - isVideoEnabled would have always returned false.

Original call to itself - which for IMS Phone results in false.

Change-Id: I4e3f04e62c91c2a8857b2f72debbdd63d4123cf2
parent 406c3db3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2378,7 +2378,7 @@ public abstract class PhoneBase extends Handler implements Phone {
        ImsPhone imsPhone = mImsPhone;
        if ((imsPhone != null)
                && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)) {
            return imsPhone.isVideoEnabled();
            return imsPhone.isVideoCallEnabled();
        }
        return false;
    }