mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-09 18:43:23 +02:00
Remove successive block quotes
This commit is contained in:
@@ -2216,8 +2216,16 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
|
||||
// Collapse quotes
|
||||
if (!show_quotes) {
|
||||
for (Element quote : document.select("blockquote"))
|
||||
quote.html("…");
|
||||
List<Element> succesive = new ArrayList<>();
|
||||
for (Element quote : document.select("blockquote")) {
|
||||
Element next = quote.nextElementSibling();
|
||||
if (next != null && "blockquote".equals(next.tagName()))
|
||||
succesive.add(quote);
|
||||
else
|
||||
quote.html("…");
|
||||
}
|
||||
for (Element quote : succesive)
|
||||
quote.remove();
|
||||
}
|
||||
|
||||
// Draw images
|
||||
|
||||
Reference in New Issue
Block a user