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

Commit 674d4157 authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Do not consider service state for video enablement."

am: fc45138e

Change-Id: I60847c812fae3d7672e1038440a1f2801789d8a8
parents dd9a81c1 fc45138e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3293,8 +3293,7 @@ public abstract class Phone extends Handler implements PhoneInternalInterface {
     */
    public boolean isVideoEnabled() {
        Phone imsPhone = mImsPhone;
        if ((imsPhone != null)
                && (imsPhone.getServiceState().getState() == ServiceState.STATE_IN_SERVICE)) {
        if (imsPhone != null) {
            return imsPhone.isVideoEnabled();
        }
        return false;