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

Commit 0e71246c authored by Suresh Koleti's avatar Suresh Koleti
Browse files

IMS: Use proper phone to route emergency calls

-- By default emergency calls will be dialed using ImsPhone.
   For multi-sim use cases if tried to dial emergency calls
   using ImsPhone where feature state is NOT_READY then will
   end up in not sending DIAL request to lower layers as
   ImsServiceProxy will not allow creating call profile if
   feature state is NOT_READY.
-- Check feature state before routing emergency calls to ImsPhone.

Test: Manual
Bug: 63920021
Change-Id: Ie74a4a368b860d9ad284cef6b90a2cc7eff19609
parent 80fa35e7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -947,7 +947,7 @@ public class ImsPhoneCallTracker extends CallTracker implements ImsPullCall {
            return false;
        }

        return mImsManager.isServiceAvailable();
        return mImsManager.isServiceReady();
    }

    /**