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

Commit 27f0cce0 authored by Wink Saville's avatar Wink Saville Committed by Android Git Automerger
Browse files

am 022dc626: Merge "Set RESULT tag properly when sending TR"

* commit '022dc626':
  Set RESULT tag properly when sending TR
parents 76276c33 022dc626
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -402,7 +402,10 @@ public class CatService extends Handler implements AppInterface {
        buf.write(DEV_ID_UICC); // destination device id

        // result
        tag = 0x80 | ComprehensionTlvTag.RESULT.value();
        tag = ComprehensionTlvTag.RESULT.value();
        if (cmdDet.compRequired) {
            tag |= 0x80;
        }
        buf.write(tag);
        int length = includeAdditionalInfo ? 2 : 1;
        buf.write(length);