git clone of logicmail with some fixes/features added
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix for creation from raw data (refs #354)

git-svn-id: https://logicmail.svn.sourceforge.net/svnroot/logicmail/trunk@940 5c734088-3d25-0410-9155-b3c3832efda5

octorian e84a41da 0d2ddc2c

+1 -1
+1 -1
LogicMail/src/org/logicprobe/LogicMail/message/TextContent.java
··· 143 143 protected void putRawData(byte[] rawData) { 144 144 this.rawData = rawData; 145 145 try { 146 - this.text = new String(rawData, ((TextPart)getMessagePart()).getCharset()); 146 + this.text = StringFactory.create(rawData, ((TextPart) getMessagePart()).getCharset()); 147 147 } catch (UnsupportedEncodingException e) { 148 148 this.text = new String(rawData); 149 149 }