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

Commit 6b276abf authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Fixed TTY Mode RIL update bug" into oc-mr1-dev

am: 377cda6b

Change-Id: I7ded0db27100de0c3825c66bdfbdb454c5cbc28b
parents 8620ef46 377cda6b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1855,6 +1855,8 @@ public class GsmCdmaPhone extends Phone {

    @Override
    public void setTTYMode(int ttyMode, Message onComplete) {
        // Send out the TTY Mode change over RIL as well
        super.setTTYMode(ttyMode, onComplete);
        if (mImsPhone != null) {
            mImsPhone.setTTYMode(ttyMode, onComplete);
        }
+0 −1
Original line number Diff line number Diff line
@@ -713,7 +713,6 @@ public class ImsPhone extends ImsPhoneBase {

    @Override
    public void setTTYMode(int ttyMode, Message onComplete) {
        super.setTTYMode(ttyMode, onComplete);
        mCT.setTtyMode(ttyMode);
    }