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

Commit 514c79b5 authored by Roman Birg's avatar Roman Birg
Browse files

Telephony: don't show unsupported transfer on IMS



Ims phone calls do not have an impl to support call transfers yet; do
not report that we support it.

Ticket: CYNGNOS-2760

Change-Id: I43e97c7d98d239e68204e0d58cafd82f38dd10e3
Signed-off-by: default avatarRoman Birg <roman@cyngn.com>
parent 13efc53b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -698,8 +698,10 @@ public final class ImsPhoneCallTracker extends CallTracker {

    boolean
    canTransfer() {
        /** TODO: use checks when impl exists, see {@link #explicitCallTransfer()}
        return mForegroundCall.getState() == ImsPhoneCall.State.ACTIVE
            && mBackgroundCall.getState() == ImsPhoneCall.State.HOLDING;
            && mBackgroundCall.getState() == ImsPhoneCall.State.HOLDING; **/
        return false;
    }

    //***** Private Instance Methods