mirror of https://github.com/M66B/FairEmail.git
Remove Outlook quotes
This commit is contained in:
parent
15db488a83
commit
cff0ee2bf0
|
@ -2884,6 +2884,14 @@ public class HtmlHelper {
|
|||
return;
|
||||
}
|
||||
|
||||
// ms-outlook-mobile
|
||||
quotes = d.body().select("div#divRplyFwdMsg");
|
||||
if (quotes.size() > 0) {
|
||||
quotes.nextAll().remove();
|
||||
quotes.remove();
|
||||
return;
|
||||
}
|
||||
|
||||
// Web.de: <div id="aqm-original"
|
||||
quotes = d.body().select("div#aqm-original");
|
||||
if (quotes.size() > 0) {
|
||||
|
|
Loading…
Reference in New Issue