1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Use HtmlConverter.convertEmoji2Img() in LocalFolder.updateMessage()

This commit is contained in:
cketti 2012-02-18 00:44:24 +01:00
parent 03d4cee14a
commit 4adfc51339

View File

@ -2192,7 +2192,7 @@ public class LocalStore extends Store implements Serializable {
List<Part> attachments = container.attachments; List<Part> attachments = container.attachments;
String text = container.text; String text = container.text;
String html = container.html; String html = HtmlConverter.convertEmoji2Img(container.html);
String preview = calculateContentPreview(text); String preview = calculateContentPreview(text);