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

Commit c0ba7b0e authored by Nathan Harold's avatar Nathan Harold Committed by Youhan Wang
Browse files

Hook the Phone.isUtEnabled() Function to ImsPhone.isUtEnabled()

Bug: 32874442
Change-Id: Icb6cd44a3673b31e1579c6e39dab1264856c9ef1
parent 9cfc7dc5
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -2847,6 +2847,9 @@ public abstract class Phone extends Handler implements PhoneInternalInterface {
     * Return if UT capability of ImsPhone is enabled or not
     */
    public boolean isUtEnabled() {
        if (mImsPhone != null) {
            return mImsPhone.isUtEnabled();
        }
        return false;
    }