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

Commit 022dc626 authored by Wink Saville's avatar Wink Saville Committed by Gerrit Code Review
Browse files

Merge "Set RESULT tag properly when sending TR"

parents 53f70140 8316a989
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);