Loading core/java/com/google/android/mms/pdu/PduPersister.java +4 −1 Original line number Diff line number Diff line Loading @@ -424,6 +424,9 @@ public class PduPersister { // faster. if ("text/plain".equals(type) || "application/smil".equals(type)) { String text = c.getString(PART_COLUMN_TEXT); if (text == null) { text = ""; } byte [] blob = new EncodedStringValue(text).getTextString(); baos.write(blob, 0, blob.length); } else { Loading Loading
core/java/com/google/android/mms/pdu/PduPersister.java +4 −1 Original line number Diff line number Diff line Loading @@ -424,6 +424,9 @@ public class PduPersister { // faster. if ("text/plain".equals(type) || "application/smil".equals(type)) { String text = c.getString(PART_COLUMN_TEXT); if (text == null) { text = ""; } byte [] blob = new EncodedStringValue(text).getTextString(); baos.write(blob, 0, blob.length); } else { Loading