diff --git a/src/com/fsck/k9/view/MessageWebView.java b/src/com/fsck/k9/view/MessageWebView.java index 897b2d8e4..557e472d6 100644 --- a/src/com/fsck/k9/view/MessageWebView.java +++ b/src/com/fsck/k9/view/MessageWebView.java @@ -179,13 +179,7 @@ public class MessageWebView extends RigidWebView { } content += HtmlConverter.cssStylePre(); content += "" + text + ""; - - // 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); - } + loadDataWithBaseURL("http://", content, "text/html", "utf-8", null); } /*