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