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

Commit 377cda6b authored by Brad Ebinger's avatar Brad Ebinger Committed by Android (Google) Code Review
Browse files

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

parents dd41e584 3ae635e2
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);
    }