1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-31 20:25:38 +00:00

Get body text only

This commit is contained in:
M66B 2021-10-24 09:11:40 +02:00
parent f0215a4e1d
commit a9cfd10b07

View file

@ -2126,7 +2126,7 @@ public class HtmlHelper {
for (Element bq : d.select("blockquote"))
bq.prependChild(new TextNode("> "));
return d.text();
return d.body().text();
}
static String getQuoteStyle(Element e) {