mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-03 13:44:40 +00:00
Get body text only
This commit is contained in:
parent
f0215a4e1d
commit
a9cfd10b07
1 changed files with 1 additions and 1 deletions
|
@ -2126,7 +2126,7 @@ public class HtmlHelper {
|
||||||
for (Element bq : d.select("blockquote"))
|
for (Element bq : d.select("blockquote"))
|
||||||
bq.prependChild(new TextNode("> "));
|
bq.prependChild(new TextNode("> "));
|
||||||
|
|
||||||
return d.text();
|
return d.body().text();
|
||||||
}
|
}
|
||||||
|
|
||||||
static String getQuoteStyle(Element e) {
|
static String getQuoteStyle(Element e) {
|
||||||
|
|
Loading…
Reference in a new issue