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

Commit c2486beb authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Telephony: Only one short sms can be read if long sms copied to CT...

Merge "Telephony: Only one short sms can be read if long sms copied to CT card" into atel.lnx.2.0-dev
parents 8055aee6 b15b6bfb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -266,7 +266,7 @@ public class SmsMessage extends SmsMessageBase {

            // Second byte is the MSG_LEN, length of the message
            // See 3GPP2 C.S0023 3.4.27
            int size = data[1];
            int size = data[1] & 0xFF;

            // Note: Data may include trailing FF's.  That's OK; message
            // should still parse correctly.