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

Commit 064157e0 authored by Nathan Harold's avatar Nathan Harold
Browse files

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

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