diff --git a/src/com/fsck/k9/view/MessageWebView.java b/src/com/fsck/k9/view/MessageWebView.java index 557e472d6..897b2d8e4 100644 --- a/src/com/fsck/k9/view/MessageWebView.java +++ b/src/com/fsck/k9/view/MessageWebView.java @@ -179,7 +179,13 @@ public class MessageWebView extends RigidWebView { } content += HtmlConverter.cssStylePre(); content += "" + text + ""; - loadDataWithBaseURL("http://", content, "text/html", "utf-8", null); + + // Workaround for asus transformer devices + if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.JELLY_BEAN) { + loadData(content, "text/html; charset=UTF-8", "utf-8"); + } else { + loadDataWithBaseURL("http://", content, "text/html", "utf-8", null); + } } /*