1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-01 09:16:00 +00:00

Remove Outlook quotes

This commit is contained in:
M66B 2024-06-12 20:25:10 +02:00
parent 15db488a83
commit cff0ee2bf0

View file

@ -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) {