1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

use "http://" as baseUrl in WebView instead of "email://", refs issue 267

This commit is contained in:
Thialfihar 2010-07-07 10:54:50 +00:00
parent a826f33eb3
commit 5d4073072f

View File

@ -1867,7 +1867,7 @@ public class MessageView extends K9Activity implements OnClickListener
{
public void run()
{
mMessageContentView.loadDataWithBaseURL("email://", emailText, "text/html", "utf-8", null);
mMessageContentView.loadDataWithBaseURL("http://", emailText, "text/html", "utf-8", null);
}
});
mHandler.showShowPictures(text.contains("<img"));