Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1af2f23f authored by cketti's avatar cketti Committed by GitHub
Browse files

Merge pull request #2004 from philipwhiuk/styleQuotedContent

Style quoted content

Fixes #1930 
parents 985cd859 17dc1c52
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ import android.widget.Toast;
import com.fsck.k9.K9;
import com.fsck.k9.K9.Theme;
import com.fsck.k9.R;
import com.fsck.k9.helper.HtmlConverter;
import com.fsck.k9.mailstore.AttachmentResolver;


@@ -117,7 +118,7 @@ public class MessageWebView extends RigidWebView {
    public void displayHtmlContentWithInlineAttachments(@NonNull String htmlText,
            @Nullable AttachmentResolver attachmentResolver, @Nullable OnPageFinishedListener onPageFinishedListener) {
        setWebViewClient(attachmentResolver, onPageFinishedListener);
        setHtmlContent(htmlText);
        setHtmlContent(HtmlConverter.wrapMessageContent(htmlText));
    }

    private void setWebViewClient(@Nullable AttachmentResolver attachmentResolver,